cidserv/src/Makefile

16 lines
315 B
Makefile
Raw Normal View History

2004-12-23 16:44:39 -05:00
CFLAGS=-g -Wall -DSPEAKER
# -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