mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
build qfdefs by default now. remember to bootstrap and configure
This commit is contained in:
parent
a94bdb199f
commit
d850f0a529
3 changed files with 22 additions and 9 deletions
|
@ -1921,7 +1921,11 @@ QF_DEPS(WAV,
|
|||
[$(top_builddir)/libs/util/libQFutil.la],
|
||||
[$(WIN32_LIBS)],
|
||||
)
|
||||
WAV_INCS=""
|
||||
QF_DEPS(QFDEFS,
|
||||
[-I$(top_srcdir)/tools/qfdefs/include],
|
||||
[$(top_builddir)/libs/gamecode/engine/libQFgamecode.la $(top_builddir)/libs/util/libQFutil.la],
|
||||
[$(WIN32_LIBS)],
|
||||
)
|
||||
|
||||
AC_DEFINE_UNQUOTED(PATH_SEPARATOR, '/', [Define this to your operating system's path separator character])
|
||||
AC_DEFINE_UNQUOTED(CPP_NAME, "$CPP_NAME", [Define this to the command line for the C preprocessor])
|
||||
|
@ -1989,6 +1993,9 @@ AC_OUTPUT(
|
|||
tools/qfcc/doc/man/Makefile
|
||||
tools/qfcc/include/Makefile
|
||||
tools/qfcc/source/Makefile
|
||||
tools/qfdefs/Makefile
|
||||
tools/qfdefs/include/Makefile
|
||||
tools/qfdefs/source/Makefile
|
||||
tools/qfprogs/Makefile
|
||||
tools/qfprogs/include/Makefile
|
||||
tools/qfprogs/source/Makefile
|
||||
|
|
|
@ -1 +1 @@
|
|||
SUBDIRS=pak qfcc qfprogs qwaq wav
|
||||
SUBDIRS=pak qfcc qfdefs qfprogs qwaq wav
|
||||
|
|
|
@ -1,19 +1,25 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
INCLUDES= -I$(top_srcdir)/include
|
||||
QFDEFS_LIBS=@QFDEFS_LIBS@
|
||||
QFDEFS_DEPS=@QFDEFS_DEPS@
|
||||
QFDEFS_INCS=@QFDEFS_INCS@
|
||||
|
||||
INCLUDES= -I$(top_srcdir)/include $(QFDEFS_INCS)
|
||||
GENDEFS=./gendefs
|
||||
|
||||
bin_PROGRAMS= qfdefs
|
||||
noinst_PROGRAMS= gendefs
|
||||
|
||||
qfdefs_SOURCES= defs.c defs_nq.c defs_qw.c fix_globals.c qfdefs.c
|
||||
qfdefs_LDADD= -lQFgamecode -lQFutil
|
||||
qfdefs_SOURCES= defs.c defs_nq.c defs_qw.c fix_globals.c qfdefs.c
|
||||
qfdefs_LDADD= $(QFDEFS_LIBS)
|
||||
qfdefs_DEPENDENCIES=$(QFDEFS_DEPS)
|
||||
|
||||
gendefs_SOURCES= gendefs.c
|
||||
|
||||
defs_nq.c: $(top_srcdir)/include/progdefs.nq gendefs
|
||||
./gendefs nq $(top_srcdir)/include/progdefs.nq defs_nq.c
|
||||
defs_nq.c: $(srcdir)/../include/progdefs.nq gendefs
|
||||
$(GENDEFS) nq $(srcdir)/../include/progdefs.nq defs_nq.c
|
||||
|
||||
defs_qw.c: $(top_srcdir)/include/progdefs.qw gendefs
|
||||
./gendefs qw $(top_srcdir)/include/progdefs.qw defs_qw.c
|
||||
defs_qw.c: $(srcdir)/../include/progdefs.qw gendefs
|
||||
$(GENDEFS) qw $(srcdir)/../include/progdefs.qw defs_qw.c
|
||||
|
||||
CLEANFILES= defs_nq.c defs_qw.c
|
||||
|
|
Loading…
Reference in a new issue