annotate win95kggui/Makefile @ 76:6b3cf09d045c

Remove stray object file
author Paper <mrpapersonic@gmail.com>
date Sat, 25 Jun 2022 22:11:48 -0400
parents dbf5ce219fe3
children 14c64e2a9842
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
64
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
1 # please remind me to never create makefiles ever again
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2
75
dbf5ce219fe3 Switch from BASS to ft2play
Paper <mrpapersonic@gmail.com>
parents: 64
diff changeset
3 CC_FLAGS=-Wall -O2 -static -I./include -DAUDIODRIVER_WINMM
dbf5ce219fe3 Switch from BASS to ft2play
Paper <mrpapersonic@gmail.com>
parents: 64
diff changeset
4 LD_FLAGS=-mwindows -lwinmm
64
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
5
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
6 win95kggui:
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
7 windres src/icon.rc src/icon.o -I./include
75
dbf5ce219fe3 Switch from BASS to ft2play
Paper <mrpapersonic@gmail.com>
parents: 64
diff changeset
8 ./bin2h src/bergsm.xm
dbf5ce219fe3 Switch from BASS to ft2play
Paper <mrpapersonic@gmail.com>
parents: 64
diff changeset
9 mv hdata.h include/bergsm.h
dbf5ce219fe3 Switch from BASS to ft2play
Paper <mrpapersonic@gmail.com>
parents: 64
diff changeset
10 $(CC) -o win95kggui.exe src/win95kggui.c src/icon.o sub/ft2play/audiodrivers/winmm/*.c sub/ft2play/*.c $(CC_FLAGS) $(LD_FLAGS)
64
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
11
1508aee998df Add Windows 95 Keygen GUI
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
12 clean:
76
6b3cf09d045c Remove stray object file
Paper <mrpapersonic@gmail.com>
parents: 75
diff changeset
13 rm -f include/bergsm.h *.o src/*.o *.exe