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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#
# GNUmakefile - Generated by ProjectCenter
# Written by Philippe C.D. Robert <phr@3dkit.org>
#
# NOTE: Do NOT change this file -- ProjectCenter maintains it!
#
# Put all of your customisations in GNUmakefile.preamble and
# GNUmakefile.postamble
#
include $(GNUSTEP_MAKEFILES)/common.make
#
# Subprojects
#
#
# Bundle
#
PACKAGE_NAME=PajeEventDecoder
BUNDLE_NAME=PajeEventDecoder
BUNDLE_EXTENSION=.bundle
BUNDLE_INSTALL_DIR=$(GNUSTEP_BUNDLES)/Paje
PajeEventDecoder_PRINCIPAL_CLASS=PajeEventDecoder
#
# Additional libraries
#
ifeq ($(FOUNDATION_LIB), apple)
LDFLAGS += -F../General -framework General
else
PajeEventDecoder_BUNDLE_LIBS += -lGeneral
ADDITIONAL_LIB_DIRS += -L../General/General.framework/Versions/Current
endif
#
# Resource files
#
PajeEventDecoder_RESOURCE_FILES=
#
# Header files
#
PajeEventDecoder_HEADERS= \
PajeEventDecoder.h
#
# Class files
#
PajeEventDecoder_OBJC_FILES= \
PajeEventDecoder.m
#
# C files
#
PajeEventDecoder_C_FILES=
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/bundle.make
-include GNUmakefile.postamble
|