Mercurial > codedump
view win95kggui/Makefile @ 70:eafe13de3f76
Update channeldownloader.py
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Wed, 01 Jun 2022 07:19:02 -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