home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / c / contest / makefile < prev   
Encoding:
Makefile  |  2005-03-26  |  159 b   |  9 lines

  1. CC = gcc
  2. RES = windres
  3. FLAGS = -O2 -s -I..
  4. BASSLIB = ..\bass.lib
  5. OUTDIR = ..\bin
  6.  
  7. contest:
  8.     $(CC) $(FLAGS) $@.c $(BASSLIB) -lwinmm -o $(OUTDIR)\$@.exe
  9.