## FILE: GNUmakefile
#
# Project TChat
#
# Creator Chris B. Vetter
# Maintainer Chris B. Vetter
# Creation Date Mon Sep 11 15:22:05 CEST 2006
#
# Copyright (c) 2006
#
# TChat 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
#
# Framework
#
APP_NAME = TChat
#
# Resources
#
$(APP_NAME)_APPLICATION_ICON = Resources/TChat.png
${APP_NAME}_RESOURCE_FILES = \
TChatInfo.plist \
Resources/Controller.gorm \
Resources/WindowController.gorm \
Resources/TChat.png
#
# Header Files
#
${APP_NAME}_HEADER_FILES = \
#
# Class Files
#
${APP_NAME}_OBJC_FILES = \
AppController.m \
WindowController.m \
main.m
#
# C Files
#
${APP_NAME}_C_FILES = \
#
# Additional Settings
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble
#
# End of File.
syntax highlighted by Code2HTML, v. 0.9.1