-
Notifications
You must be signed in to change notification settings - Fork 4
/
GNUmakefile
46 lines (35 loc) · 1.5 KB
/
GNUmakefile
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
#
# If GNUSTEP_SYSTEM_ROOT is equal to nothing then include
# ProjectBuilder makefile named Makefile else use this
# GNUstep makefile.
# We need to do this, because On MacOS X Server 1.x (Rhapsody),
# GNUmakefile are also used by the make system, and have
# priority over Makefile, whereas Makefile MUST be used.
#
# Thanks to Damian Steer <[email protected]>
#
ifeq ($(GNUSTEP_SYSTEM_ROOT),)
include Makefile
else
FRAMEWORK_NAME = MacGPGME
MacGPGME_CURRENT_VERSION_NAME = 1.1.4
MacGPGME_OBJC_FILES = GPGContext.m GPGData.m GPGEngine.m GPGExceptions.m \
GPGKey.m GPGKeySignature.m GPGObject.m GPGPrettyInfo.m \
GPGSignature.m GPGSubkey.m GPGTrustItem.m GPGUserID.m \
LocalizableStrings.m GPGAsyncHelper.m GPGKeyGroup.m \
GPGOptions/GPGOptions.m GPGSignatureNotation.m GPGRemoteKey.m \
GPGRemoteUserID.m
MacGPGME_HEADER_FILES = GPGContext.h GPGData.h GPGDefines.h GPGEngine.h \
GPGExceptions.h GPGInternals.h GPGKey.h GPGKeySignature.h \
MacGPGME.h GPGObject.h GPGPrettyInfo.h GPGSignature.h \
GPGSubkey.h GPGTrustItem.h GPGUserID.h LocalizableStrings.h \
GPGAsyncHelper.h GPGKeyGroup.h GPGOptions/GPGOptions.h \
GPGSignatureNotation.h GPGKeyDefines.h GPGRemoteKey.h \
GPGRemoteUserID.h
ADDITIONAL_OBJCFLAGS += -I../
include $(GNUSTEP_MAKEFILES)/common.make
-include Makefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make
-include Makefile.postamble
-include Makefile.dependencies
endif