home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d145 / dnet.lha / Dnet / unix / test / Makefile next >
Makefile  |  1988-05-26  |  693b  |  22 lines

  1.  
  2. #    TEST
  3. #
  4. #    Used to test DNET by running both sides in different directories.
  5. #    The usual procedure is to make two directories NET1 and NET2, make
  6. #    sure that the enviroment variable DNETDIR is *NOT* set, then run
  7. #    test from the directory containing the two sub directories NET1 & 2
  8. #
  9. #    Then, start the servers by cd'ing into both sub directories and
  10. #    running the servers in both sub directories.  Then, run client
  11. #    programs by, again, cd'ing to whichever sub directory you want
  12. #    the client to connect from (i.e. it's local DNET)... connecting
  13. #    to the one in the other sub directory and your off.
  14.  
  15. BIN = ../bin
  16.  
  17. $(BIN)/dtest:    test.o
  18.     cc test.o -o $(BIN)/dtest
  19.  
  20. clean:
  21.     rm -f *.o make.out
  22.