# ----------------------------------------------------------------------- # Makefile for curses user interface programs on Eis/Fair # # Creation : 13.03.2004 # Last Modified: $Id: Makefile 7411 2006-08-06 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 -O2 # Debug CCFLAGS = -Wall -g # Debug + Profiling # CCFLAGS = -Wall -g -pg all: fetchmysql fetchmysql: fetchmysql.c $(CC) -o $@ $^ -L/usr/lib/mysql -lmysqlclient install: fetchmysql strip -R .note -R .comment fetchmysql # cp -a fetchmysql /usr/local/bin/fetchmysql clean : rm *.o rm fetchmysql