makefile (366B)
1 CFLAGS=${UNIX} -g -I. -I../libc -I../common -I/usr/include ${SCFLAGS} 2 OBJS=mail.o aux.o string.o ${SYSOBJ} 3 AR=ar 4 .c.o: ; ${CC} -c ${CFLAGS} $*.c 5 6 common.a: ${OBJS} 7 ${AR} cr common.a ${OBJS} 8 -ranlib common.a 9 10 aux.o: aux.h string.h mail.h 11 string.o: string.h mail.h 12 mail.o: mail.h 13 syslog.o: sys.h 14 mail.h: sys.h 15 16 clean: 17 -rm -f *.[oO] core a.out *.a *.sL common.a 18