home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-21 | 627 b | 33 lines |
-
- # DNET SERVERS
- #
- # DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
- #
- # Aztec C Compilation and Makefile
-
- CFLAGS = +L +Icomp:include/symbols.m
- NETLIB = /lib/dnetlib.o
- BIN = /bin
-
- .c.o:
- cc $(CFLAGS) -o $*.o $*.c
-
-
- all: $(NETLIB) $(BIN)/scopy $(BIN)/scli $(BIN)/sterm
-
- /lib/dnetlib.o: /lib/dnetlib.c
- cc $(CFLAGS) -o /lib/dnetlib.o /lib/dnetlib.c
-
- $(BIN)/scopy: scopy.o
- ln +Q scopy.o $(NETLIB) -lc32 -o $(BIN)/scopy
-
- $(BIN)/scli: scli.o
- ln +Q scli.o $(NETLIB) -lc32 -o $(BIN)/scli
-
- $(BIN)/sterm: sterm.o
- ln +Q sterm.o $(NETLIB) -lc32 -o $(BIN)/sterm
-
- clean:
- -delete #?.o make.out
-
-