* fix for theme font handling (when switching back to the default theme, the language...
[open-ps2-loader.git] / pc / genvmc / Makefile
blobcb10d4585a3142d6a824941108c5c4f317efb9a3
1 ifndef CC
2 CC = gcc
3 endif
5 CFLAGS = -std=gnu99 -Wall -pedantic -I/usr/include -I/usr/local/include
6 #CFLAGS += -DDEBUG
8 ifeq ($(_WIN32),1)
9 CFLAGS += -D_WIN32
10 endif
13 all: bin/genvmc
15 clean:
16 rm -f bin/*genvmc* src/*.o
18 rebuild: clean all
20 bin/genvmc: src/genvmc.o
21 @mkdir -p bin
22 $(CC) $(CFLAGS) src/genvmc.c -o bin/genvmc