* fix for theme font handling (when switching back to the default theme, the language...
[open-ps2-loader.git] / pc / opl2iso / Makefile
blob4d3522544f6e936bf893b334ad864449ec6daacf
1 ifndef CC
2 CC = gcc
3 endif
5 CFLAGS = -std=gnu99 -Wall -pedantic -I/usr/include -I/usr/local/include -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
7 ifeq ($(_WIN32),1)
8 CFLAGS += -D_WIN32
9 endif
11 all: bin/opl2iso
13 clean:
14 rm -f bin/*opl2iso* src/*.o
16 rebuild: clean all
18 bin/opl2iso: src/opl2iso.o
19 @mkdir -p bin
20 $(CC) $(CFLAGS) src/opl2iso.c -o bin/opl2iso