target := $(PKG_TARG)-
endif
-flags := -g3 -O0 -DYYDEBUG=1
-#flags := -g0 -O3
-flags += -Wall -Werror -I. -fno-common
+#flags := -g3 -O0 -DYYDEBUG=1
+flags := -g0 -O3
+flags += -Wall -Werror -Wno-parentheses
+flags += -fPIC -fno-common
+flags += -I. -I$(shell apr-1-config --includedir)
svn := $(shell svnversion)
-filters := C
-
all:
all := libcycript.plist cycript
endif
header := Cycript.tab.hh Parser.hpp Pooling.hpp cycript.hpp
-code := ffi_type.o parse.o Replace.o Output.o Cycript.tab.o lex.cy.o Network.o
+code := ffi_type.o parse.o
+code += Replace.o Output.o
+code += Cycript.tab.o lex.cy.o
+code += Network.o Parser.o
+filters := C
+ldid := echo
dll := so
+apr := $(shell apr-1-config --link-ld)
+library := $(apr) -lffi
+console := $(apr) -lreadline
uname_s := $(shell uname -s)
uname_p := $(shell uname -p)
%.o: %.mm $(header)
$(target)g++ $(flags) -c -o $@ $<
-cyrver: Server.o
- $(target)g++ $(flags) -o $@ $(filter %.o,$^) \
- -lobjc -lapr-1 -lsubstrate \
- -framework CoreFoundation -framework CFNetwork
- ldid -S $@
-
libcycript.$(dll): $(code)
- $(target)g++ $(flags) -dynamiclib -o $@ $(filter %.o,$^) \
- -install_name /usr/lib/libcycript.$(dll) \
- -lobjc -lapr-1 -lffi -lsubstrate \
- -framework CoreFoundation -framework Foundation \
- -framework CFNetwork \
- -framework JavaScriptCore -framework WebCore
- ldid -S $@
+ $(target)g++ $(flags) -shared -dynamiclib -o $@ $(filter %.o,$^) $(library) $(link)
+ $(ldid) -S $@
cycript: Console.o libcycript.$(dll)
- $(target)g++ $(flags) -o $@ $(filter %.o,$^) \
- -lobjc -lapr-1 -lreadline \
- -L. -lcycript \
- -framework Foundation -framework CoreFoundation \
- -framework JavaScriptCore -framework UIKit
- ldid -S cycript
+ $(target)g++ $(flags) -o $@ $(filter %.o,$^) -L. -lcycript $(console) $(link)
+ $(ldid) -S cycript
package: $(deb)