File: GNUmakefile

package info (click to toggle)
paje.app 1.98-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,428 kB
  • sloc: objc: 24,517; ansic: 6,998; makefile: 134; sh: 42; java: 31
file content (51 lines) | stat: -rw-r--r-- 1,301 bytes parent folder | download | duplicates (3)
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
BUNDLE_INSTALL_DIR=$(GNUSTEP_BUNDLES)/Paje

include $(GNUSTEP_MAKEFILES)/common.make

BUNDLE_NAME = SpaceTimeViewer

SpaceTimeViewer_PRINCIPAL_CLASS = STController

ADDITIONAL_INCLUDE_DIRS = -I../General
ifeq ($(FOUNDATION_LIB), apple)
	LDFLAGS += -F../General -framework General
else
	SpaceTimeViewer_BUNDLE_LIBS += -lGeneral
	ADDITIONAL_LIB_DIRS += -L../General/General.framework/Versions/Current
endif

SpaceTimeViewer_RESOURCE_FILES = \
        STEntityTypeLayout.gorm \
        STEntityTypeLayout.nib \
        SpaceTime.gorm \
        SpaceTime.nib \
        crosscursor.tiff \
        distant.tiff \
        near.tiff \
        toselection.tiff

SpaceTimeViewer_OBJC_FILES = \
        DrawView.m \
        DrawView+Mouse.m \
        DrawView+Finding.m \
        DrawView+Positioning.m \
        DrawView+Drawing.m \
        STController.m \
        HierarchyRuler.m \
        Shape.m \
        STEntityTypeLayout.m \
        STEntityTypeLayoutController.m \
        STLayoutEditor.m

SpaceTimeViewer_HEADER_FILES = \
        DrawView.h \
        STController.h \
        HierarchyRuler.h \
        Shape.h \
	STEntityTypeLayout.h \
	STEntityTypeLayoutController.h \
        STLayoutEditor.h

-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/bundle.make
-include GNUmakefile.postamble