annotate win95kggui/Makefile @ 79:bc2e83fbfbce
Update garf.c
committer: GitHub <noreply@github.com>
author |
Paper <37962225+mrpapersonic@users.noreply.github.com> |
date |
Mon, 04 Jul 2022 07:01:56 -0400 |
parents |
6b3cf09d045c |
children |
14c64e2a9842 |
rev |
line source |
64
|
1 # please remind me to never create makefiles ever again
|
|
2
|
75
|
3 CC_FLAGS=-Wall -O2 -static -I./include -DAUDIODRIVER_WINMM
|
|
4 LD_FLAGS=-mwindows -lwinmm
|
64
|
5
|
|
6 win95kggui:
|
|
7 windres src/icon.rc src/icon.o -I./include
|
75
|
8 ./bin2h src/bergsm.xm
|
|
9 mv hdata.h include/bergsm.h
|
|
10 $(CC) -o win95kggui.exe src/win95kggui.c src/icon.o sub/ft2play/audiodrivers/winmm/*.c sub/ft2play/*.c $(CC_FLAGS) $(LD_FLAGS)
|
64
|
11
|
|
12 clean:
|
76
|
13 rm -f include/bergsm.h *.o src/*.o *.exe
|