#
# FILE:
# Makefile
#
# FUNCTION:
# Hand-crafted Makefile 
#
# HISTORY:
# Created by Linas Vepstas January 2002
#

INCLUDES = -I../src 

CFLAGS  = `glib-config --cflags`

OBJS=             \
	dui-initdb.o   \
	dui-odbc.o   


all: ${OBJS}

dui-initdb.o: 	dui-initdb.h dui-odbc.h
dui-odbc.o: 	dui-odbc.h


.o:
	cc -o $* $^ ${LIBS}

.c.o:
	cc -c -g -Wall -O2 $< ${CFLAGS} ${INCLUDES}


clean:
	rm -f *.o

realclean:	clean
	rm -f ${EXES}
