# ----------------------------------------------------------------------- # Makefile for mysqlmaildropfilter programs on Eisfair # # Creation : 2007-04-05 # Last Modified: $Id: Makefile 7411 2007-04-05 17:38:38Z jv $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # ---------------------------------------------------------------------- # Release # CCFLAGS = -Wall CC=gcc CFLAGS = -Wall -Wstrict-prototypes -g # Debug CCFLAGS = -Wall -g # Debug + Profiling # CCFLAGS = -Wall -g -pg all: mysqlmaildropfilter mysqlmaildropfilter: autoresponse.o mysqlmaildropfilter.o $(CC) -o $@ $^ -L/usr/lib/mysql -lmysqlclient install: mysqlmaildropfilter strip -R .note -R .comment mysqlmaildropfilter # cp -a mysqlmaildropfilter /usr/local/bin/mysqlmaildropfilter clean : rm *.o rm mysqlmaildropfilter