home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / misc / rf911215.lha / makefile < prev    next >
Encoding:
Makefile  |  1991-12-10  |  601 b   |  32 lines

  1.  
  2. ROOT = welmat:src/rexxflow/
  3. SRC = $(ROOT)src/
  4. INCL = $(ROOT)include/
  5. OBJ = $(ROOT)obj/
  6. RLIB = welmat:src/rvi/
  7.  
  8. CC = lc -v -cq -cius -i$(INCL)
  9. AS = a68k
  10.  
  11.  
  12. rexxflow.library: $(OBJ)libhdr.o $(OBJ)libinf.o $(OBJ)rexxflow.o
  13.     blink <with <
  14.         FROM $(OBJ)libhdr.o+$(OBJ)libinf.o+$(OBJ)rexxflow.o+$(RLIB)rexxvars.o
  15.         TO rexxflow.library
  16.         LIB lib:amiga.lib lib:lc.lib lib:ddebug.lib
  17.         NOICONS
  18.     <
  19.     copy rexxflow.library libs:
  20.  
  21. .a.o:
  22.     $(AS) $*.a -o$(OBJ)$>.o -iinclude: -i$(INCL) -q50
  23.  
  24. .c.o:
  25.     $(CC) -o$(OBJ) $*
  26.  
  27. $(OBJ)libhdr.o: $(SRC)libhdr.a
  28.  
  29. $(OBJ)libinf.o: $(SRC)libinf.a
  30.  
  31. $(OBJ)rexxflow.o: $(SRC)rexxflow.c
  32.