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 52 53 54 55 56 57 58 59 60 61 62
|
#
# GNUmakefile - Generated by ProjectCenter
#
include $(GNUSTEP_MAKEFILES)/common.make
#
# Application
#
VERSION = 0.1
PACKAGE_NAME = FTP
APP_NAME = FTP
FTP_APPLICATION_ICON =
GNUSTEP_INSTALLATION_DIR = $(HOME)/GNUstep
#
# Resource files
#
FTP_RESOURCE_FILES = \
Resources/FTP.gorm\
Resources/arrow_left.tiff \
Resources/arrow_right.tiff\
Resources/Info-gnustep.plist
#
# Header files
#
FTP_HEADER_FILES = \
AppController.h \
ftpclient.h \
localclient.h \
fileTable.h \
fileElement.h \
client.h
#
# Class files
#
FTP_OBJC_FILES = \
AppController.m \
ftpclient.m \
localclient.m \
fileTable.m \
fileElement.m \
client.m
#
# C files
#
FTP_C_FILES =
FTP_OBJC_FILES += \
main.m
#
# Makefiles
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble
|