home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-05-26 | 693 b | 22 lines |
-
- # TEST
- #
- # Used to test DNET by running both sides in different directories.
- # The usual procedure is to make two directories NET1 and NET2, make
- # sure that the enviroment variable DNETDIR is *NOT* set, then run
- # test from the directory containing the two sub directories NET1 & 2
- #
- # Then, start the servers by cd'ing into both sub directories and
- # running the servers in both sub directories. Then, run client
- # programs by, again, cd'ing to whichever sub directory you want
- # the client to connect from (i.e. it's local DNET)... connecting
- # to the one in the other sub directory and your off.
-
- BIN = ../bin
-
- $(BIN)/dtest: test.o
- cc test.o -o $(BIN)/dtest
-
- clean:
- rm -f *.o make.out
-