File: GNUmakefile.in

package info (click to toggle)
gworkspace 0.8.8-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,792 kB
  • sloc: objc: 70,525; sh: 305; makefile: 117
file content (38 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (7)
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

PACKAGE_NAME = gworkspace
include $(GNUSTEP_MAKEFILES)/common.make

LIBRARY_VAR  = DBKIT
LIBRARY_NAME = libDBKit

libDBKit_OBJC_FILES = \
DBKBTree.m \
DBKBTreeNode.m \
DBKFreeNodesPage.m \
DBKFixLenRecordsFile.m \
DBKVarLenRecordsFile.m \
DBKPathsTree.m

libDBKit_HEADER_FILES = \
DBKBTree.h \
DBKBTreeNode.h \
DBKFixLenRecordsFile.h \
DBKVarLenRecordsFile.h \
DBKPathsTree.h

libDBKit_HEADER_FILES_DIR = .
libDBKit_HEADER_FILES_INSTALL_DIR=DBKit

ifeq ($(findstring darwin, $(GNUSTEP_TARGET_OS)), darwin)
  ifeq ($(OBJC_RUNTIME_LIB), gnu)
    SHARED_LD_POSTFLAGS += -lgnustep-base
  endif
endif

include $(GNUSTEP_MAKEFILES)/library.make
include $(GNUSTEP_MAKEFILES)/aggregate.make

-include GNUmakefile.preamble
-include GNUmakefile.local
-include GNUmakefile.postamble