1GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
2
3include $(GNUSTEP_MAKEFILES)/common.make
4
5# Subprojects
6SUBPROJECTS = \
7	CDPlayer \
8	AudioCD
9
10APP_NAME = CDPlayer
11
12# The Objective-C source files to be compiled
13CDPlayer_OBJC_FILES =	CDPlayer_main.m \
14			Controller.m \
15			Player.m \
16			Preferences.m \
17			LED.m
18
19# The Resource files to be copied into the app's resources directory
20CDPlayer_RESOURCE_FILES = Images/*.tiff
21
22ADDITIONAL_LDFLAGS += -lcdaudio
23
24include $(GNUSTEP_MAKEFILES)/application.make
25
26-include GNUmakefile.postamble
27
28