cidserv/src/Makefile

17 lines
317 B
Makefile
Raw Normal View History

2004-12-23 18:13:05 -05:00
CFLAGS=-g -Wall
#-DSPEAKER
2004-12-23 16:44:39 -05:00
# -DDEBUG
all: cidserv bcast hex
cidserv: cidserv.c
gcc ${CFLAGS} -lutil -o cidserv cidserv.c
bcast: bcast.c
gcc ${CFLAGS} -o bcast bcast.c
hex: hex.c
gcc ${CFLAGS} -o hex hex.c
clean:
rm -f *.o *.core hex bcast cidserv
strip: cidserv bcast hex
strip cidserv
strip bcast
strip hex