## FILE: GNUmakefile # # Project Tryst # # Creator Chris B. Vetter # Maintainer Chris B. Vetter # Creation Date Mon Sep 11 14:42:39 CEST 2006 # # Copyright (c) 2006 # # Tryst is free software under the terms of a dual BSD/LGPL license. # For a full copyright description, see the COPYRIGHT file. # ############################################################################ ifeq ($(GNUSTEP_MAKEFILES),) $(error You need to run the GNUstep configuration script before compiling) endif include $(GNUSTEP_MAKEFILES)/common.make # # Library # LIBRARY_NAME = libTryst ${LIBRARY_NAME}_CURRENT_VERSION_NAME = $(VERSION) ${LIBRARY_NAME}_DEPLOY_WITH_CURRENT_VERSION = yes # # Subprojects # ${LIBRARY_NAME}_SUBPROJECTS = # # Resources # ${LIBRARY_NAME}_RESOURCE_FILES = # # Header Files # ${LIBRARY_NAME}_HEADER_FILES_INSTALL_DIR = Tryst ${LIBRARY_NAME}_HEADER_FILES = $(wildcard *.h) # # C Files # ${LIBRARY_NAME}_C_FILES = # # C++ Files # ${LIBRARY_NAME}_CC_FILES = # # Objective-C Files # ${LIBRARY_NAME}_OBJC_FILES = $(wildcard *.m) # # Objective-C++ Files # ${LIBRARY_NAME}_OBJCC_FILES = # # Additional Settings # -include ../GNUmakefile.preamble -include GNUmakefile.local ifneq ($(doc), yes) include $(GNUSTEP_MAKEFILES)/library.make else DOCUMENT_NAME = Tryst ${DOCUMENT_NAME}_DOC_INSTALL_DIR = /KoKit ${DOCUMENT_NAME}_AGSDOC_FILES = \ ${DOCUMENT_NAME}/${DOCUMENT_NAME}.gsdoc \ $(wildcard *.h) ${DOCUMENT_NAME}_AGSDOC_FLAGS = \ -Clean NO \ -ConstantsTemplate Constants \ -Declared ${DOCUMENT_NAME} \ -DocumentAllInstanceVariables NO \ -FunctionsTemplate Functions \ -GenerateHtml YES \ -IgnoreDependencies NO \ -MacrosTemplate Macros \ -MakeFrames YES \ -Project ${DOCUMENT_NAME} \ -ShowDependencies NO \ -Standards NO \ -TypedefsTemplate Types \ -Up ${DOCUMENT_NAME} \ -VariablesTemplate Variables \ -Verbose NO \ -Warn NO \ -WordMap '{ \ EXTERN=extern; \ PUBLIC=""; \ PRIVATE=static; \ }' include $(GNUSTEP_MAKEFILES)/documentation.make endif -include GNUmakefile.postamble # # End of File.