db_bridge/Makefile
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:11 +0100
changeset 19 933d86c1ff71
parent 17 b3731a25b9ec
child 20 5fec678f931b
permissions -rw-r--r--
namespace console added for console tools, password entry and other stuff committer: Markus Bröker <mbroeker@largo.homelinux.org>

CC=g++
CFLAGS=-Wall -O2 -ansi -Iinclude
TARGET=\
	mysql_db \
	postgresql_db

.SUFFIXES: .cpp

.cpp.o:
	$(CC) -c $(CFLAGS) $<

all: $(TARGET)

mysql_db: mysql_db.o main.o
	$(CC) $< main.o -lmysqlclient -o $@
	rm -f main.o

postgresql_db: postgresql_db.o main.cpp
	$(CC) -c $(CFLAGS) -DWITH_POSTGRESQL main.cpp
	$(CC) $< main.o -lpq -o $@
	rm -f main.o

.PHONY: clean

clean:
	rm -f *.o;
	rm -f *~ include/*~
	rm -f $(TARGET)