home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / IPC / ManxDemo / makefile < prev    next >
Makefile  |  1988-04-28  |  611b  |  35 lines

  1. #######################
  2. #       :bk=0
  3. #       Test suite for Peter/Pete IPC system
  4. #       Creates GET and HAVE.
  5. #
  6. #       bjw             25-june-88      Initial coding.
  7. #
  8.  
  9. OBJS = have.o get.o ipc.o
  10. CFLAGS = +Q
  11.  
  12. #
  13. # --- Give me a reference:
  14. #
  15. stone:  have get
  16.         @touch stone
  17.  
  18. have:   have.o ipc.o
  19.         ln -o HAVE  have.o ipc.o -lc
  20.  
  21. get:    get.o ipc.o
  22.         ln -o GET   get.o  ipc.o -lc
  23.  
  24. #
  25. # --- Now the source files:
  26. #
  27. ipc.o:  ipc.h ipcports.h
  28.         cc $(CLFAGS) -o ipc.o IPC.C
  29.         diff >ipc-c.diff IPC.C df1:IPC.C
  30.         diff >ipc-h.diff IPC.H df1:IPC.H
  31.  
  32. $(OBJS):        ipc.h ipcports.h
  33.  
  34.  
  35.