|
|
1.1 ! root 1: # ! 2: # Makefile for pseudo-inews ! 3: # ! 4: ! 5: SRCS = inews.c ../common/clientlib.c ! 6: OBJS = inews.o ../common/clientlib.o ! 7: HFILES = ../common/response_codes.h ! 8: ! 9: CFLAGS = -O ! 10: ! 11: BINDIR = /usr/new ! 12: ! 13: all: inews ! 14: ! 15: inews: $(OBJS) ! 16: $(CC) $(CFLAGS) $(OBJS) -o inews ! 17: ! 18: ../common/clientlib.o: ! 19: ${CC} ${CFLAGS} -c ../common/clientlib.c ! 20: mv clientlib.o ../common/clientlib.o ! 21: ! 22: install: ! 23: cp inews ${BINDIR}/inews ! 24: chmod 755 ${BINDIR}/inews ! 25: ! 26: clean: ! 27: rm -f ${OBJS} inews ! 28: ! 29: lint: ! 30: lint ${SRCS} ${HFILES} ! 31: ! 32: tags: ! 33: ctags $(CFILES) $(HFILES)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.