home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d145
/
dnet.lha
/
Dnet
/
unix
/
dnet
/
Makefile
< prev
next >
Wrap
Makefile
|
1988-05-26
|
629b
|
23 lines
# THE DNET DRIVER, UNIX END
#
# DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved
#
# the BIN should be placed in your path for ease of use. DNET uses
# UNIX level sockets allowing multiple users on a system to run it
# independantly. You should make a special directory (Example: .DNET)
# and then setenv DNETDIR ~/.DNET/ ... all clients and servers will
# use the enviroment variable to find/create the UNIX level sockets.
BIN = ../bin
OBJS = dnet.o control.o files.o globals.o net.o subs.o internal.o
.c.o: ; cc -c -o $*.o $*.c
$(BIN)/dnet: $(OBJS)
cc $(OBJS) -o $(BIN)/dnet
clean:
rm -f *.o make.out