home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / profile / smakefile < prev    next >
Encoding:
Makefile  |  1996-12-24  |  188 b   |  15 lines

  1. all: stest ltest
  2.  
  3. stest: stest.o
  4.    sc link stest.o
  5.  
  6. ltest: ltest.o
  7.    sc link ltest.o
  8.  
  9. stest.o: test.c
  10.    sc test.c profile objname=stest.o
  11.  
  12. ltest.o: test.c
  13.    sc test.c objname=ltest.o
  14.  
  15.