home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-05-26 | 705 b | 37 lines |
-
- # DNET CLIENTS
- #
- # DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
- #
-
- CFLAGS = +L +Icomp:include/symbols.m
- NETLIB = /lib/dnetlib.o
- BIN = /bin
-
- .c.o:
- cc $(CFLAGS) -o $*.o $*.c
-
-
- all: $(NETLIB) $(BIN)/putfiles $(BIN)/loadav \
- $(BIN)/fterm $(BIN)/quitdnet
-
- /lib/dnetlib.o: /lib/dnetlib.c
- cc $(CFLAGS) -o /lib/dnetlib.o /lib/dnetlib.c
-
- $(BIN)/loadav: loadav.o
- ln +Q loadav.o $(NETLIB) -lc32 -o $(BIN)/loadav
-
- $(BIN)/putfiles: putfiles.o
- ln +Q putfiles.o $(NETLIB) -lc32 -o $(BIN)/putfiles
-
-
- $(BIN)/fterm: fterm.o
- ln +Q fterm.o $(NETLIB) -lc32 -o $(BIN)/fterm
-
- $(BIN)/quitdnet: quitdnet.o
- ln +Q quitdnet.o $(NETLIB) -lc32 -o $(BIN)/quitdnet
-
- clean:
- -delete #?.o make.out
-
-