home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 367.lha / netkeys_v2.0 / makefile < prev    next >
Encoding:
Makefile  |  1990-05-02  |  709 b   |  30 lines

  1. #
  2. #
  3. # For use with Lattice LMK.  To compile, type 'LMK'.
  4. #
  5. #
  6.  
  7. LIBS   = lib:lc.lib lib:amiga.lib
  8.  
  9. CFLAGS = -cwusf -v
  10. LC2FLAGS = 
  11. CLIENTOBJS = netkeys.o  nkutil.o dnetlib.o mshow.o
  12. SERVEROBJS = snetkeys.o nkutil.o dnetlib.o mshow.o
  13.  
  14. all:  netkeys snetkeys
  15.  
  16. netkeys: $(CLIENTOBJS)
  17.   @echo >ram:tmp.with "from lib:cback.o $(CLIENTOBJS)"
  18.   @assign blinkwith:
  19.   blink with ram:tmp.with SC SD ND VERBOSE BATCH to $@ lib $(LIBS)
  20.  
  21. snetkeys: $(SERVEROBJS)
  22.   @echo >ram:tmp.with "from $(SERVEROBJS)"
  23.   @assign blinkwith:
  24.   blink with ram:tmp.with SC SD ND VERBOSE BATCH to $@ lib $(LIBS)
  25.  
  26. netkeys.o  : netkeys.c netkeys.h dnet.h
  27.    lc $(CFLAGS) netkeys.c
  28. snetkeys.o  : snetkeys.c netkeys.h dnet.h
  29. nkutil.o    : nkutil.c
  30.