-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGNUmakefile
67 lines (39 loc) · 1.17 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# EDMessage.framework
# $Id: GNUmakefile,v 2.3 2003-11-10 00:06:32 znek Exp $
ifeq "$(GNUSTEP_SYSTEM_ROOT)" ""
include Makefile
else
# Install into the local root by default
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_LOCAL_ROOT)
include $(GNUSTEP_MAKEFILES)/common.make
FRAMEWORK_NAME = EDMessage
EDMessage_HEADER_FILES = \
EDMessage.h \
EDMessageDefines.h \
utilities.h
EDMessage_OBJC_FILES = framework.m
EDMessage_LIBRARIES_DEPEND_UPON += -lEDCommon
EDMessage_SUBPROJECTS = \
FoundationExtensions.subproj \
Message.subproj \
HeaderFieldCoder.subproj \
ContentCoder.subproj \
Mail.subproj
include GNUstepBuild
# Additional target specific settings
# Mac OS X
ifneq ($(findstring darwin, $(GNUSTEP_HOST_OS)),)
EDMessage_LDFLAGS += -seg1addr 0x5080000
endif
include Version
# This seems odd, but on Mach the dyld supports
# major/compatibility, thus you just need a single number.
# On UNIX things are different, hence we use the
# CURRENT_PROJECT_VERSION as the MAJOR_VERSION.
MAJOR_VERSION = $(CURRENT_PROJECT_VERSION)
#MINOR_VERSION = 0
#SUBMINOR_VERSION = 0
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make
-include GNUmakefile.postamble
endif