File: GNUmakefile

package info (click to toggle)
poe.app 0.5.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 564 kB
  • sloc: objc: 1,272; ansic: 438; makefile: 54; sh: 17
file content (39 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (4)
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
include $(GNUSTEP_MAKEFILES)/common.make

NAME = Poe

PACKAGE_NAME = $(NAME)
VERSION = 0.5.1

APP_NAME = $(NAME)
$(NAME)_APPLICATION_ICON = Poe.tiff
$(NAME)_MAIN_MODEL_FILE = Poe.gorm

$(NAME)_OBJC_FILES = \
AddPanelController.m \
Controller.m \
Document.m \
EditorWindowController.m \
ExtendedTableColumn.m \
main.m \
NSMutableArray+goodies.m \
OGGEditor.m \
PreferencesWindowController.m \
SwitchTableView.m \
Util.m

Poe_C_FILES = vcedit.c

ifeq ($(FOUNDATION_LIB), apple)
  $(NAME)_RESOURCE_FILES = Resources/Shared/* Resources/MacOS/*
else
  $(NAME)_RESOURCE_FILES = Resources/Shared/* Resources/GNUstep/*
endif
    
ADDITIONAL_GUI_LIBS += -lvorbis -lvorbisfile
ADDITIONAL_OBJCFLAGS = -Wall

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