2001-02-24 06:58:54 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
#
|
|
|
|
# Makefile.am
|
|
|
|
#
|
|
|
|
# Automake-using build system for QuakeForge
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Jeff Teunissen <deek@quakeforge.net>
|
|
|
|
#
|
|
|
|
# This Makefile 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:
|
|
|
|
#
|
|
|
|
# Free Software Foundation, Inc.
|
|
|
|
# 59 Temple Place - Suite 330
|
|
|
|
# Boston, MA 02111-1307, USA
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2002-01-22 05:48:03 +00:00
|
|
|
QFCC_LIBS=@QFCC_LIBS@
|
|
|
|
QFCC_DEPS=@QFCC_DEPS@
|
|
|
|
QFCC_INCS=@QFCC_INCS@
|
|
|
|
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(QFCC_INCS)
|
2001-06-12 21:06:28 +00:00
|
|
|
YFLAGS = -d
|
2001-02-24 06:58:54 +00:00
|
|
|
|
2002-09-17 22:19:14 +00:00
|
|
|
if BUILD_QFCC
|
|
|
|
qfcc=qfcc
|
2004-01-28 05:34:23 +00:00
|
|
|
qfpreqcc=qfpreqcc
|
2004-01-28 05:23:43 +00:00
|
|
|
qfprogs=qfprogs
|
2002-09-17 22:19:14 +00:00
|
|
|
else
|
|
|
|
qfcc=
|
2004-01-28 05:34:23 +00:00
|
|
|
qfpreqcc=
|
2004-01-28 05:23:43 +00:00
|
|
|
qfprogs=
|
2002-09-17 22:19:14 +00:00
|
|
|
endif
|
|
|
|
|
2004-01-28 05:23:43 +00:00
|
|
|
bin_PROGRAMS= $(qfcc) $(qfprogs)
|
2004-01-28 05:34:23 +00:00
|
|
|
bin_SCRIPTS= $(qfpreqcc)
|
2004-01-28 05:23:43 +00:00
|
|
|
EXTRA_PROGRAMS= qfcc qfprogs
|
2001-02-24 06:58:54 +00:00
|
|
|
|
2002-06-01 05:37:18 +00:00
|
|
|
qfcc_SOURCES= \
|
2004-01-25 08:55:03 +00:00
|
|
|
class.c constfold.c cpp.c debug.c def.c emit.c expr.c function.c \
|
|
|
|
idstuff.c immediate.c linker.c method.c obj_file.c opcodes.c options.c \
|
|
|
|
qc-lex.l qc-parse.y qfcc.c reloc.c strpool.c struct.c switch.c type.c
|
2002-06-01 05:37:18 +00:00
|
|
|
|
2002-01-22 05:48:03 +00:00
|
|
|
qfcc_LDADD= $(QFCC_LIBS)
|
|
|
|
qfcc_DEPENDENCIES= $(QFCC_DEPS)
|
2002-06-03 03:45:24 +00:00
|
|
|
|
2004-01-28 05:23:43 +00:00
|
|
|
qfprogs_SOURCES= \
|
2004-01-29 07:43:05 +00:00
|
|
|
disassemble.c globals.c lines.c modules.c obj_file.c stub.c qfprogs.c strings.c
|
2004-01-28 05:23:43 +00:00
|
|
|
qfprogs_LDADD= $(QFCC_LIBS)
|
|
|
|
qfprogs_DEPENDENCIES= $(QFCC_DEPS)
|
2002-07-12 06:19:02 +00:00
|
|
|
|
2004-02-03 05:30:11 +00:00
|
|
|
BUILT_SOURCES=qc-parse.c qc-parse.h qc-lex.c
|
2003-08-12 18:22:11 +00:00
|
|
|
|
2004-02-03 03:22:48 +00:00
|
|
|
EXTRA_DIST=qc-lex.c qc-parse.c qc-parse.h qfpreqcc
|