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:
|
2007-03-12 05:13:43 +00:00
|
|
|
OSARCH=$(shell uname -s)
|
2007-03-12 05:17:17 +00:00
|
|
|
# and define these variables to impact your build
|
2007-03-17 05:49:57 +00:00
|
|
|
|
2007-03-12 04:21:54 +00:00
|
|
|
|
2006-03-02 21:05:07 +00:00
|
|
|
ifeq ($(OSARCH),Darwin)
|
2007-03-12 04:21:54 +00:00
|
|
|
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=
|
2007-03-13 18:23:49 +00:00
|
|
|
include ../../../../build/modmake.rules
|
2006-03-02 20:43:29 +00:00
|
|
|
|