mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
make things a little quieter
This commit is contained in:
parent
3af96782da
commit
4d267abd2a
3 changed files with 8 additions and 8 deletions
|
@ -6,9 +6,9 @@ AUTOMAKE_OPTIONS= foreign
|
|||
pkgdatadir=@sharepath@/id1
|
||||
|
||||
QFCC=$(top_builddir)/tools/qfcc/source/qfcc
|
||||
QCFLAGS=-g -Werror
|
||||
QCFLAGS=-qq -g -Werror
|
||||
QCPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include
|
||||
GZIP=if echo $@ | grep -q .gz; then gzip -fv `basename $@ .gz`; if test -f `basename $@ .dat.gz`.sym; then gzip -fv `basename $@ .dat.gz`.sym; fi; fi
|
||||
GZIP=if echo $@ | grep -q .gz; then gzip -f `basename $@ .gz`; if test -f `basename $@ .dat.gz`.sym; then gzip -f `basename $@ .dat.gz`.sym; fi; fi
|
||||
if HAVE_ZLIB
|
||||
GZ=.gz
|
||||
else
|
||||
|
|
|
@ -1168,10 +1168,10 @@ main (int argc, char **argv)
|
|||
parse_cpp_name ();
|
||||
#endif
|
||||
|
||||
if (strcmp (sourcedir, "")) {
|
||||
if (options.verbosity >= 1 && strcmp (sourcedir, "")) {
|
||||
printf ("Source directory: %s\n", sourcedir);
|
||||
}
|
||||
if (strcmp (progs_src, "progs.src")) {
|
||||
if (options.verbosity >= 1 && strcmp (progs_src, "progs.src")) {
|
||||
printf ("progs.src: %s\n", progs_src);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
QFCC=$(top_builddir)/tools/qfcc/source/qfcc
|
||||
QCFLAGS=-g -Werror
|
||||
QCFLAGS=-qq -g -Werror
|
||||
INCLUDES= -I$(top_srcdir)/include
|
||||
|
||||
noinst_PROGRAMS=qwaq
|
||||
|
@ -10,14 +10,14 @@ qwaq_libs= \
|
|||
$(top_builddir)/libs/util/libQFutil.la
|
||||
|
||||
qwaq_dat_src= \
|
||||
main.qc $(top_srcdir)/cs-code/object.r test.r
|
||||
main.qc test.r
|
||||
|
||||
qwaq_SOURCES= main.c builtins.c
|
||||
qwaq_LDADD= $(qwaq_libs)
|
||||
qwaq_DEPENDENCIES= $(qwaq_libs)
|
||||
|
||||
qwaq.dat: progs.src $(qwaq_dat_src)
|
||||
qwaq.dat: progs.src $(qwaq_dat_src) $(top_srcdir)/cs-code/object.r
|
||||
$(QFCC) $(QCFLAGS)
|
||||
|
||||
EXTRA_DIST=progs.src
|
||||
EXTRA_DIST=$(qwaq_dat_src)
|
||||
CLEANFILES= *.dat *.sym
|
||||
|
|
Loading…
Reference in a new issue