home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / Example_Code_v37 / Libraries / Intuition / StrDemo / smakefile next >
Encoding:
Makefile  |  1996-03-17  |  282 b   |  17 lines

  1. .c.o:
  2.     sc $(CFLAGS) $<
  3.  
  4. CFLAGS = nostackcheck structureequivalence
  5. LFLAGS = smallcode smalldata nodebug
  6.  
  7. LIBS = lib:sc.lib lib:amiga.lib
  8. OBJS = strdemo.o strhooks.o strgad.o
  9.  
  10. all: strdemo
  11.  
  12. strdemo: $(OBJS)
  13.     slink lib:c.o $(OBJS) to $@ lib $(LIBS) $(LFLAGS)
  14.  
  15. clean:
  16.     -delete $(OBJS)
  17.