2007-03-12 04:21:54 +00:00
|
|
|
# define these targets in your makefile if you wish
|
|
|
|
# local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
|
|
|
|
|
|
|
|
# and define these variables to imapact your build
|
|
|
|
|
2006-03-02 21:05:07 +00:00
|
|
|
ifeq ($(OSARCH),Darwin)
|
2007-03-12 04:21:54 +00:00
|
|
|
LOCAL_CFLAGS += -I/Library/Frameworks/swift.framework/Versions/4/Headers
|
|
|
|
LOCAL_LDFLAGS += -framework swift
|
2006-03-02 21:05:07 +00:00
|
|
|
else
|
2007-03-12 04:21:54 +00:00
|
|
|
LOCAL_LDFLAGS += -L/opt/swift/lib -lswift -lceplex_us -lceplang_en -lm
|
|
|
|
LOCAL_CFLAGS += -I/opt/swift/include
|
2006-03-02 21:05:07 +00:00
|
|
|
endif
|
2007-03-12 04:21:54 +00:00
|
|
|
LOCAL_OBJS=
|
|
|
|
include $(BASE)/build/modmake.rules
|
2006-03-02 20:43:29 +00:00
|
|
|
|