#################################################################
#								#
#			RDBConv Makefile			#
#								#
#################################################################

CC	=	gcc

#	Linux
#CFLAGS	=	-Wall -Wstrict-prototypes -m486 -g
#CFLAGS	=	-Wall -Wstrict-prototypes -m486 -O2

#	SunOS
CFLAGS	=	-Wall -Wstrict-prototypes -g
#CFLAGS	=	-Wall -Wstrict-prototypes -O2

LIBS	=	

PROG	=	rdbconv

OBJS	=	rdbconv.o

all:		$(PROG)

$(PROG):	$(OBJS)
		$(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)

clean:
		rm -f *.o core

clobber:
		rm -f $(PROG) *.o core
