File: GNUmakefile.in

package info (click to toggle)
gnustep-corebase 0.1.1%2B20230710-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,608 kB
  • sloc: ansic: 25,359; objc: 4,347; cpp: 75; xml: 49; makefile: 24; sh: 7
file content (123 lines) | stat: -rw-r--r-- 2,337 bytes parent folder | download
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
include $(GNUSTEP_MAKEFILES)/common.make
include ../Version

PACKAGE_NAME = gnustep-corebase

LIBRARY_NAME = libgnustep-corebase

ADDITIONAL_INCLUDE_DIRS = -I../Headers
ADDITIONAL_CFLAGS = -DBUILDING_SELF
ADDITIONAL_CXXFLAGS = -DBUILDING_SELF
ADDITIONAL_OBJCFLAGS = -DBUILDING_SELF

libgnustep-corebase_INTERFACE_VERSION = $(MAJOR_VERSION)

libgnustep-corebase_C_FILES = \
  CFArray.c \
  CFAttributedString.c \
  CFBag.c \
  CFBase.c \
  CFBinaryHeap.c \
  CFBitVector.c \
  CFCalendar.c \
  CFCharacterSet.c \
  CFData.c \
  CFDate.c \
  CFDateFormatter.c \
  CFDictionary.c \
  CFError.c \
  CFLocale.c \
  CFNumber.c \
  CFNumberFormatter.c \
  CFPropertyList.c \
  CFRunLoop.c \
  CFRuntime.c \
  CFSet.c \
  CFSocket.c \
  CFStream.c \
  CFString.c \
  CFConstantString.c \
  CFStringEncoding.c \
  CFStringUtilities.c \
  CFTimeZone.c \
  CFTree.c \
  CFURL.c \
  CFURLAccess.c \
  CFUUID.c \
  CFXMLNode.c \
  CFXMLParser.c \
  GSCArray.c \
  GSFunctions.c \
  GSHashTable.c \
  GSUnicode.c

libgnustep-corebase_HEADER_FILES = \
  CoreFoundation.h \
  CFArray.h \
  CFAttributedString.h \
  CFAvailability.h \
  CFBag.h \
  CFBase.h \
  CFBinaryHeap.h \
  CFBitVector.h \
  CFBundle.h \
  CFByteOrder.h \
  CFCalendar.h \
  CFCharacterSet.h \
  CFData.h \
  CFDate.h \
  CFDateFormatter.h \
  CFDictionary.h \
  CFError.h \
  CFLocale.h \
  CFNumber.h \
  CFNumberFormatter.h \
  CFPropertyList.h \
  CFRunLoop.h \
  CFRuntime.h \
  CFSet.h \
  CFSocket.h \
  CFStream.h \
  CFStreamPriv.h \
  CFString.h \
  CFStringEncodingExt.h \
  CFTimeZone.h \
  CFTree.h \
  CFURL.h \
  CFURLAccess.h \
  CFUUID.h \
  CFXMLNode.h \
  CFXMLParser.h \
  GSCharacter.h \
  GSUnicode.h

libgnustep-corebase_OBJC_FILES = \
  CFBundle.m \
  NSCFArray.m \
  NSCFData.m \
  NSCFError.m \
  NSCFString.m \
  NSCFSet.m \
  NSCFLocale.m \
  NSCFNumber.m \
  NSCFDictionary.m \
  NSCFTimeZone.m \
  NSCFInputStream.m \
  NSCFOutputStream.m \
  NSCFDate.m \
  NSCFType.m

libgnustep-corebase_LIBRARIES_DEPEND_UPON += @LIBS@ $(FND_LIBS)
libgnustep-corebase_HEADER_FILES_DIR = ../Headers/CoreFoundation
libgnustep-corebase_HEADER_FILES_INSTALL_DIR = CoreFoundation

libgnustep-corebase_NEEDS_GUI = NO

ifeq ($(GNUSTEP_TARGET_OS), mingw32)
  ADDITIONAL_LDFLAGS = -L/mingw/bin
endif

include $(GNUSTEP_MAKEFILES)/library.make

-include Makefile.postamble