1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
BUNDLE_INSTALL_DIR=$(GNUSTEP_BUNDLES)/Paje
include $(GNUSTEP_MAKEFILES)/common.make
AggregatingFilter_PRINCIPAL_CLASS = AggregatingFilter
BUNDLE_NAME = AggregatingFilter
ADDITIONAL_INCLUDE_DIRS = -I../General
ifeq ($(FOUNDATION_LIB), apple)
LDFLAGS += -F../General -framework General
else
AggregatingFilter_BUNDLE_LIBS += -lGeneral
ADDITIONAL_LIB_DIRS += -L../General/General.framework/Versions/Current
endif
AggregatingFilter_OBJC_FILES = \
AggregatingFilter.m \
AggregateEvent.m \
AggregateState.m \
AggregateValue.m \
AggregateLink.m \
EntityAggregator.m \
AggregatingChunk.m \
AggregatingChunkArray.m
AggregatingFilter_HEADER_FILES = \
AggregatingFilter.h \
AggregateEvent.h \
AggregateState.h \
AggregateValue.h \
AggregateLink.h \
EntityAggregator.h \
AggregatingChunk.h \
AggregatingChunkArray.h
OTHERSRCS = Makefile.preamble Makefile Makefile.postamble m.template \
h.template
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/bundle.make
-include GNUmakefile.postamble
|