1
2include $(GNUSTEP_MAKEFILES)/common.make
3
4# Subprojects
5ifeq ($(prefs), no)
6SUBPROJECTS = \
7	AudioCD
8else
9SUBPROJECTS = \
10	AudioCD \
11	AudioCD/AudioCDPrefs
12endif
13
14APP_NAME = CDPlayer
15CDPlayer_APPLICATION_ICON=app.tiff
16
17# The Objective-C source files to be compiled
18CDPlayer_OBJC_FILES = \
19	CDPlayer_main.m \
20	Controller.m \
21	Player.m \
22	Preferences.m \
23	TrackList.m \
24	TrackListView.m \
25	FreeDBView.m \
26	GeneralView.m \
27	LED.m
28
29# The Resource files to be copied into the app's resources directory
30CDPlayer_RESOURCE_FILES = Images/*.tiff CDPlayer.help
31
32CDPlayer_LANGUAGES=English German French
33CDPlayer_LOCALIZED_RESOURCE_FILES = \
34	Localizable.strings \
35	TrackList.gorm \
36	General.gorm \
37	FreeDB.gorm
38
39-include GNUmakefile.preamble
40include $(GNUSTEP_MAKEFILES)/aggregate.make
41include $(GNUSTEP_MAKEFILES)/application.make
42
43-include GNUmakefile.postamble
44
45