Skip to content

Instantly share code, notes, and snippets.

@sononum
Created November 1, 2011 21:22
Show Gist options
  • Save sononum/1331953 to your computer and use it in GitHub Desktop.
Save sononum/1331953 to your computer and use it in GitHub Desktop.
# 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