# ----------------------------------------------------------------------- # Makefile for curses user interface programs on Eis/Fair # # Creation : 13.03.2004 # Last Modified: $Id: Makefile 7448 2006-08-08 11:06:17Z 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 -march=i586 # Debug CCFLAGS = -Wall -g -O2 # Debug + Profiling # CCFLAGS = -Wall -g -pg all: dracd dracd: dracd.o $(CC) -o $@ $^ -ldb dracd.o: dracd.c install: dracd strip -R .note -R .comment dracd clean : rm *.o rm dracd