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