view win95kggui/Makefile @ 68:a43ed076b28f

[channeldownloader.py] Implement HTTPError to circumvent Python 2 weirdness kind of hacky because we're just giving it none for everything LOL committer: GitHub <noreply@github.com>
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Wed, 18 May 2022 20:05:47 -0400
parents 1508aee998df
children dbf5ce219fe3
line wrap: on
line source

# please remind me to never create makefiles ever again

CC_FLAGS=-Wall -O2 -static -I./include
LD_FLAGS=-lbass -mwindows

win95kggui:
	$(CC) -o src/win95kggui.o -c src/win95kggui.c $(CC_FLAGS)
	windres src/icon.rc src/icon.o -I./include
	$(LD) -r -b binary -o src/bergsm.o src/bergsm.xm
	$(CC) -o win95kggui.exe src/win95kggui.o src/icon.o src/bergsm.o $(CC_FLAGS) $(LD_FLAGS)

clean:
	rm -f src/*.o *.exe