|
|
1.1 root 1: # Makefile 4.2 83/06/30
2: #
3:
4: MAKEPARAM = AS=${AS} CC=${CC} LD=${LD} INCLDIR=${INCLDIR} LIBDIR=${LIBDIR} ULIBDIR=${ULIBDIR} DESTDIR=${DESTDIR}
5: CFLAGS= -O
6: DESTDIR=
7: ALL= enroll xsend xget
8:
9: all: ${ALL}
10:
11: enroll: enroll.o lib.o
12: ${CC} enroll.o lib.o -lmp -o enroll
13:
14: xget: xget.o lib.o
15: ${CC} xget.o lib.o -lmp -o xget
16:
17: xsend: xsend.o lib.o
18: ${CC} xsend.o lib.o -lmp -o xsend
19:
20: enroll.o xget.o xsend.o lib.o: xmail.h
21:
22: list:
23: @pr -2 -w124 m.h xmail.h enroll.c xsend.c xget.c lib.c Makefile
24:
25: install: enroll xsend xget
26: for i in ${ALL}; do install -s $$i ${DESTDIR}/usr/bin; done
27:
28: clean:
29: rm -f *.o yacc.* y.tab.c ${ALL}
30:
31: cleansrc:
32: rm -f *.[ch] Makefile
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.