File: Makefile.win32

package info (click to toggle)
gramophone2 0.8.13a-3.6
  • links: PTS
  • area: main
  • in suites: sid
  • size: 544 kB
  • sloc: ansic: 2,707; yacc: 1,873; lex: 308; makefile: 33
file content (20 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC=gcc
#with mingw32 O2 optimization GRAMophone crashes...
CFLAGS+=-lm

DESTDIR=$(HOMEPATH)\gramophone2

default:		GRAMophone.tab.c
			$(CC) $(CFLAGS) -o gramophone2 GRAMophone.c\
			grammyVM.c init.c midicode.c\
			midifile.c expcode.c debug.c errors.c\
			hash.c GRAMophone.tab.c

GRAMophone.tab.c:	lex.yy.c
			bison -d GRAMophone.y

lex.yy.c:
			flex GRAMophone.l

clean:
			del y* lex* GRAMophone.tab.* gramophone2.exe