Mercurial > msvpvf
view Makefile @ 6:d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 26 Jan 2022 20:25:08 -0500 |
parents | 87c7d43b03ff |
children | 7103ac60ebdc |
line wrap: on
line source
CC=clang CC_FLAGS=-Wall -O2 LD_FLAGS= src/%.o : src/%.c $(CC) -c $(CC_FLAGS) $< -o $@ msvpvf: src/main.o $(CC) -o $@ $< $(CC_FLAGS) $(LD_FLAGS) # GUI is windows-only, please use cross-compiler! gui: src/gui.o $(CC) -o $@ $< $(CC_FLAGS) $(LD_FLAGS) -mwindows clean: rm -f src/*.o *.exe msvpvf gui