annotate win95kggui/Makefile @ 69:63e6bc911606
 
Use regex instead of weirdness to filter archive.org names
committer: GitHub <noreply@github.com>
 | author | Paper <37962225+mrpapersonic@users.noreply.github.com> | 
 | date | Wed, 18 May 2022 23:24:03 -0400 | 
 | parents | 1508aee998df | 
 | children | dbf5ce219fe3 | 
 | rev | line source | 
  
| 64 | 1 # please remind me to never create makefiles ever again | 
|  | 2 | 
|  | 3 CC_FLAGS=-Wall -O2 -static -I./include | 
|  | 4 LD_FLAGS=-lbass -mwindows | 
|  | 5 | 
|  | 6 win95kggui: | 
|  | 7 	$(CC) -o src/win95kggui.o -c src/win95kggui.c $(CC_FLAGS) | 
|  | 8 	windres src/icon.rc src/icon.o -I./include | 
|  | 9 	$(LD) -r -b binary -o src/bergsm.o src/bergsm.xm | 
|  | 10 	$(CC) -o win95kggui.exe src/win95kggui.o src/icon.o src/bergsm.o $(CC_FLAGS) $(LD_FLAGS) | 
|  | 11 | 
|  | 12 clean: | 
|  | 13 	rm -f src/*.o *.exe |