
DEST=dbase

all: $(DEST)

$(DEST): $(DEST).o
	$(CC) $(DEST).o $(CFLAGS) -lmysqlclient -o $(DEST) -lm

clean:
	-rm -fr $(DEST) *.o
