home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / CDTools / Players / MPEGA / mpega_library / developer / demo / smakefile < prev   
Makefile  |  1999-09-08  |  288b  |  18 lines

  1. #
  2. # Makefile for MPEGA_demo
  3. # Stéphane TAVENARD 25/10/1997
  4. #
  5.  
  6. .c.o:
  7.       SC WITH=SCOPTIONS.020 NOLINK $*.c
  8.  
  9. TARGET = MPEGA_demo
  10.  
  11. all: $(TARGET)
  12.  
  13. MPEGDEC_demo.o: MPEGA_demo.c
  14.  
  15. $(TARGET) : MPEGA_demo.o
  16.    sc link MPEGA_demo.o to $(TARGET) NOICONS LIB LIB:scm.lib LIB:sc.lib LIB:amiga.lib
  17.  
  18.