view win95kggui/Makefile @ 133:0d8eabdd12ab default tip

create: write H:MM:SS timestamps, add option to fill with gaussian-blur instead of black many albums are longer than one hour so writing H:MM:SS is a necessity. if anything there will just be verbose info that isn't important for my use-case. however the gaussian-blur is simply broken. It works, and it plays locally just fine, but YouTube in particular elongates the video to fit the full width. I'm not entirely sure why it does this, but it makes it useless and ugly.
author Paper <paper@tflc.us>
date Sat, 03 Jan 2026 20:25:38 -0500
parents 8e4ee43d3b81
children
line wrap: on
line source

# please remind me to never create makefiles ever again

CFLAGS=-Wall -O2 -static -I./include -DAUDIODRIVER_WINMM
LDFLAGS=-mwindows -lwinmm

win95kggui:
	windres src/icon.rc src/icon.o -I./include
	./bin2h src/bergsm.xm
	mv hdata.h include/bergsm.h
	$(CC) -o win95kggui.exe src/win95kggui.c src/icon.o dep/ft2play/audiodrivers/winmm/*.c dep/ft2play/*.c $(CFLAGS) $(LDFLAGS)

clean:
	rm -f include/bergsm.h *.o src/*.o *.exe