X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/66f8d960ff1458e5c632d9853232daa2c0c5c768..51ac63c5d3635ca302ead91b42a7df4c0340428a:/makefile diff --git a/makefile b/makefile index 42ba7d6..f939c4b 100644 --- a/makefile +++ b/makefile @@ -38,15 +38,14 @@ ldid := true entitle := $(ldid) lib := lib dll := so -apr := $(shell apr-1-config --link-ld) -library := $(apr) -console := $(apr) -lreadline +apr_config := apr-1-config +library := +console := -lreadline depends := restart ?= $(MAKE) uname_s ?= $(shell uname -s) uname_p ?= $(shell uname -p) -uname_m ?= $(shell uname -m) -include $(uname_s).mk -include $(uname_s)-$(uname_p).mk @@ -63,9 +62,13 @@ endif endif endif +apr := $(shell $(apr_config) --link-ld) +library += $(apr) +console += $(apr) + flags += -Wall -Werror -Wno-parentheses #-Wno-unused flags += -fno-common -flags += -I. -Iinclude -I$(shell apr-1-config --includedir) +flags += -I. -Iinclude -I$(shell $(apr_config) --includedir) all += $(lib)cycript.$(dll) @@ -108,8 +111,8 @@ endif all: $(all) -clean: - rm -f *.o $(lib)cycript.$(dll) $(all) Struct.hpp lex.cy.c Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh cyrver Cycript.yy Cycript.l control Bridge.hpp +clean:: + rm -f *.o $(lib)cycript.$(dll) $(all) Struct.hpp lex.cy.c Cycript.tab.cc Cycript.tab.hh location.hh position.hh stack.hh cyrver Cycript.yy Cycript.l control Bridge.hpp Cycript.output %.yy: %.yy.in ./Filter.sh <$< >$@ $(filters)