mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
33 lines
1012 B
Makefile
33 lines
1012 B
Makefile
# This Makefile works for Mac OS X (Yosemite).
|
|
#
|
|
# Run "brew install sdl" to install SDL in /usr/local.
|
|
# Run "brew install sdl_gfx".
|
|
# Run "brew install sdl_mixer".
|
|
# Run "brew install sdl_ttf".
|
|
# Run "make -f Makefile.mac" to build HyperRogue as ./hyper.
|
|
|
|
CXXFLAGS += -std=c++11 -DMAC
|
|
CXXFLAGS += -W -Wall -Wextra -pedantic
|
|
CXXFLAGS += -Wno-format-pedantic -Wno-unused-parameter -Wno-char-subscripts -Wno-missing-field-initializers -Wno-vla-extension
|
|
CXXFLAGS += ${EXTRA_CXXFLAGS}
|
|
CXXFLAGS += -I/usr/local/include
|
|
LDFLAGS += -L/usr/local/lib
|
|
|
|
hyper: hyper.o
|
|
$(CXX) $(CXXFLAGS) hyper.o $(LDFLAGS) -lSDL -lSDLMain -lSDL_gfx -lSDL_mixer -lSDL_ttf -framework AppKit -framework OpenGL -o hyper
|
|
|
|
hyper.o: *.cpp language-data.cpp
|
|
$(CXX) $(CXXFLAGS) -O2 -c hyper.cpp
|
|
|
|
langen: langen.cpp
|
|
$(CXX) $(CXXFLAGS) -O0 -Wno-embedded-directive langen.cpp -o langen
|
|
|
|
# Generation of language-data.cpp
|
|
language-data.cpp: langen
|
|
./langen > language-data.cpp
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f langen language-data.cpp hyper.o hyper
|