annotate win95kggui/Makefile @ 95:5b56b6cc991f

Update Makefile committer: GitHub <noreply@github.com>
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Fri, 05 Aug 2022 23:46:19 -0400
parents 14c64e2a9842
children 8e4ee43d3b81
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
94
14c64e2a9842 what the shit?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 76
diff changeset
3 CFLAGS=-Wall -O2 -static -I./include -DAUDIODRIVER_WINMM
14c64e2a9842 what the shit?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 76
diff changeset
4 LDFLAGS=-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
95
5b56b6cc991f Update Makefile
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 94
diff changeset
10 $(CC) -o win95kggui.exe src/win95kggui.c src/icon.o sub/ft2play/audiodrivers/winmm/*.c sub/ft2play/*.c $(CFLAGS) $(LDFLAGS)
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