RetroArch/Makefile.win32

69 lines
1.4 KiB
Makefile
Raw Normal View History

2011-01-07 16:59:53 +00:00
TARGET = ssnes.exe
OBJ = ssnes.o file.o driver.o conf/config_file.o settings.o dynamic.o
CC = gcc
CXX = g++
HAVE_SRC = 1
HAVE_SDL = 1
HAVE_XML = 1
libsnes ?= -lsnes
2011-01-07 16:59:53 +00:00
LIBS =
DEFINES = -I.
2011-01-08 18:44:15 +00:00
LDFLAGS = -L. -static-libgcc -s
2011-01-07 16:59:53 +00:00
SRC_LIBS = -lsamplerate-0
2011-01-09 16:24:13 +00:00
SDL_LIBS = -lmingw32 -lSDLmain -lSDL
SDL_CFLAGS = -ISDL
2011-01-07 16:59:53 +00:00
ifeq ($(HAVE_SRC), 1)
LIBS += $(SRC_LIBS)
DEFINES += $(SRC_CFLAGS) -DHAVE_SRC
2011-01-07 16:59:53 +00:00
endif
ifeq ($(HAVE_SDL), 1)
OBJ += gfx/gl.o input/sdl.o audio/sdl.o audio/buffer.o
LIBS += $(SDL_LIBS) -lopengl32
DEFINES += $(SDL_CFLAGS) -DHAVE_SDL
endif
ifeq ($(HAVE_XML), 1)
OBJ += gfx/shader_glsl.o
DEFINES += $(XML_CFLAGS) -DHAVE_XML
LIBS += -lxml2
2011-01-07 16:59:53 +00:00
endif
LIBS += $(libsnes)
2011-01-08 18:44:15 +00:00
CFLAGS = -Wall -O3 -std=gnu99 -I.
2011-01-07 16:59:53 +00:00
2011-01-09 15:08:06 +00:00
all: $(TARGET) ssnes-joyconfig.exe
2011-01-07 16:59:53 +00:00
$(TARGET): $(OBJ)
$(CXX) -o $@ $(OBJ) $(LIBS) $(LDFLAGS)
2011-01-09 15:08:06 +00:00
2011-01-07 16:59:53 +00:00
%.o: %.c
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
2011-01-09 16:24:13 +00:00
ssnes-joyconfig.exe: conf/config_file.o tools/ssnes-joyconfig.o
2011-01-09 18:22:49 +00:00
$(CC) -o ssnes-joyconfig.exe conf/config_file.o tools/ssnes-joyconfig.o $(SDL_LIBS) -L. -static-libgcc
2011-01-09 16:24:13 +00:00
2011-01-07 16:59:53 +00:00
clean:
rm -f *.o
rm -f audio/*.o
rm -f conf/*.o
rm -f gfx/*.o
rm -f record/*.o
rm -f hqflt/*.o
rm -f hqflt/snes_ntsc/*.o
rm -f $(TARGET)
2011-01-09 15:08:06 +00:00
rm -f ssnes-joyconfig.exe
2011-01-09 16:24:13 +00:00
rm -f tools/*.o
2011-01-07 16:59:53 +00:00
2011-01-08 19:05:41 +00:00
dist: all
2011-01-09 15:08:06 +00:00
zip -r ssnes-win32.zip $(TARGET) ssnes.cfg snes.dll libxml2.dll iconv.dll zlib1.dll SDL.dll libsamplerate-0.dll ssnes-joyconfig.exe
2011-01-08 19:05:41 +00:00
.PHONY: all install uninstall clean dist