This commit is contained in:
dcp1990 2006-06-29 18:43:24 +00:00
parent 7eb2dccb6d
commit cd11f56e58

18
servng/Makefile Normal file
View file

@ -0,0 +1,18 @@
# makefile
CC=cc
CPPFLAGS=
LIBS=
LDFLAGS=
CFLAGS+=-ansi
SRCS=
OBJS=
BINS=cidd
all: ${BINS}
.depend: $(SRCS)
mkdep $(CPPFLAGS) $(SRCS)
cidd: $(OBJS)
$(CC) $(LDFLAGS) -o cidd $(OBJS) $(LIBS)
%.o: %.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
clean:
rm -f *.core *.o *~ .depend cidd