home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / utilities / vmode / !VMode / Makefile < prev    next >
Encoding:
Makefile  |  1992-03-02  |  383 b   |  26 lines

  1.  
  2. it : !RunImage
  3.  
  4. CFLAGS= -fah -throwback
  5. CC=cc -c
  6. LN = link
  7. LIBS = c:stubs.o c:risc_oslib.o c:swiv.o
  8.  
  9. .c.o:
  10.                 $(CC) $(CFLAGS) $<
  11.  
  12. .s.o:
  13.                 objasm $< $@ -stamp -quit
  14.  
  15. .c.h:
  16.                 sed >$@ <$< -f sedscript
  17.  
  18. BITS = vmode.o $(LIBS)
  19.  
  20. !RunImage:      $(BITS)
  21.         $(LN) -o $@ $< $(BITS)
  22.         squeeze -v $@
  23.         settype $@ ff8
  24.  
  25. vmode.o: vmode.h
  26.