Update of /cvsroot/scopeapp/scopeapp
In directory usw-pr-cvs1:/tmp/cvs-serv3816
Added Files:
GNUmakefile
Log Message:
A bare version of a makefile (doesn't work yet)
--- NEW FILE: GNUmakefile ---
# GNUmakefile: main makefile for scopeapp (MacCRO X)
#
# Copyright (C) 2001 ???.
#
# Author: Rafal Kolanski
# Date: 2001
# Based on Gorm's make file.
#
# This file is part of scopeapp (MacCRO X).
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
#
# Not needed yet
#GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
include $(GNUSTEP_MAKEFILES)/common.make
#
# Main application
#
#PACKAGE_NAME=scopeapp #needed?
APP_NAME=scopeapp
# no .gorm files
scopeapp_MAIN_MODEL_FILE=
scopeapp_APPLICATION_ICON=
#
# Additional libraries
#
ADDITIONAL_GUI_LIBS +=
#
# Resource files
#
scopeapp_RESOURCE_FILES=
# FIXME: maybe the .lproj should be here? dunno what to do with those :)
#
# Header files
#
scopeapp_HEADERS = \
src/CCoreAudioSampler.h \
src/InputSampler.h \
src/QuicktimeSampler.h \
src/ScopeAppDelegate.h \
src/ScopeController.h \
src/ScopeView.h \
src/TestSampler.h \
src/TraceView.h \
src/XYPlotView.h
#
# Class files
#
scopeapp_OBJC_FILES = \
src/XYPlotView.m
#src/ScopeAppDelegate.m
#src/ScopeController.m
#src/ScopeView.m
#src/TestSampler.m
#src/TraceView.m
#src/QuicktimeSampler.m
#src/CoreAudioSampler.m
#
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble
|