Created
November 1, 2011 21:22
-
-
Save sononum/1331953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Standard things | |
sp := $(sp).x | |
dirstack_$(sp) := $(d) | |
d := $(dir) | |
BUILDDIRS += $(BUILD_PATH)/$(d) | |
# Local flags | |
CXXFLAGS_$(d) := $(WIRISH_INCLUDES) $(LIBMAPLE_INCLUDES) | |
# Local rules and targets | |
cSRCS_$(d) := | |
cppSRCS_$(d) := tekki.cpp | |
$(d)/tekki.cpp: $(d)/tekki.rl | |
ragel libraries/tekki/tekki.rl -o libraries/tekki/tekki.cpp | |
cFILES_$(d) := $(cSRCS_$(d):%=$(d)/%) | |
cppFILES_$(d) := $(cppSRCS_$(d):%=$(d)/%) | |
OBJS_$(d) := $(cFILES_$(d):%.c=$(BUILD_PATH)/%.o) \ | |
$(cppFILES_$(d):%.cpp=$(BUILD_PATH)/%.o) | |
DEPS_$(d) := $(OBJS_$(d):%.o=%.d) | |
$(OBJS_$(d)): TGT_CXXFLAGS := $(CXXFLAGS_$(d)) | |
TGT_BIN += $(OBJS_$(d)) | |
# Standard things | |
-include $(DEPS_$(d)) | |
d := $(dirstack_$(sp)) | |
sp := $(basename $(sp)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment