home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / c / spectrum / makefile next >
Encoding:
Makefile  |  2005-03-26  |  189 b   |  9 lines

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