home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / MUI / MCC_NList / Developer / C / Examples / smakefile < prev   
Encoding:
Makefile  |  1998-11-30  |  525 b   |  24 lines

  1. #
  2. #       smakefile for SMake
  3. #
  4.  
  5. CC = SC
  6.  
  7. LDFLAGS = Batch NoIcons
  8. CFLAGS      = StringMerge NoStackCheck NoStackExt UnsignedChars \
  9.         CommentNest ErrorRexx NoMultipleIncludes \
  10.         StructureEquivalence NoIcons GenProtoParameters \
  11.         Ignore=147 MultipleCharacterConstants STREQ NoOptimize \
  12.         MemorySize=Huge IDLen=64 PARAMETERS=BOTH SAVEDS
  13.  
  14.  
  15. all: NList-Demo
  16.  
  17.  
  18. NList-Demo: NList-Demo.o NList-Demo2.o NList-Demo3.o
  19.     $(CC) $(LDFLAGS) NList-Demo.o NList-Demo2.o NList-Demo3.o LINK to $@
  20.  
  21. .o: .c
  22.     $(CC) $(CFLAGS) $*.c OBJNAME $*.o
  23.  
  24.