home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mmoshead.zip / samples / cdtoc / makefile < prev   
Makefile  |  1994-02-20  |  377b  |  28 lines

  1. ##################################
  2. # Makefile for the CD toc sample
  3. #
  4. # using emx 0.8h, mm4emx 1.0
  5. #
  6. #
  7. # Marc E.E. van Woerkom, 2/94
  8. #
  9.  
  10. CC=gcc
  11. CFLAGS=-Wall -Zomf
  12. LFLAGS=-Zomf -Zsys -los2me -liostream -s
  13.  
  14.  
  15. all: cdtoc.exe
  16.  
  17. .cc.obj:
  18.     $(CC) $(CFLAGS) -c $*.cc
  19.  
  20. .obj.exe:
  21.     $(CC) -o $*.exe $*.obj $*.def $(LFLAGS)
  22.  
  23.  
  24. # clean up
  25. clean:
  26.     del *.obj
  27.  
  28.