cidserv/src/Makefile

20 lines
424 B
Makefile
Raw Normal View History

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