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 63 64 65 66 67 68
|
#
# GNUmakefile - Generated by ProjectCenter
# Written by Philippe C.D. Robert <phr@3dkit.org>
#
# NOTE: Do NOT change this file -- ProjectCenter maintains it!
#
# Put all of your customisations in GNUmakefile.preamble and
# GNUmakefile.postamble
#
include $(GNUSTEP_MAKEFILES)/common.make
#
# Subprojects
#
#
# Main application
#
PACKAGE_NAME=HostAddress
APP_NAME=HostAddress
HostAddress_APPLICATION_ICON=
#
# Additional libraries
#
ADDITIONAL_GUI_LIBS +=
#
# Resource files
#
HostAddress_RESOURCE_FILES=
#
# Header files
#
HostAddress_HEADERS= \
AppController.h \
Resolver.h
#
# Class files
#
HostAddress_OBJC_FILES= \
main.m \
AppController.m \
Resolver.m
#
# C files
#
HostAddress_C_FILES=
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble
|