mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Move ruamoko libs and headers into ${prefix}/lib/qfcc
This commit is contained in:
parent
b184739f03
commit
c5edbf147a
6 changed files with 10 additions and 10 deletions
|
@ -32,9 +32,9 @@ AC_DEFINE_UNQUOTED(PATH_SEPARATOR, '/',
|
|||
[Define this to your operating system path separator character])
|
||||
AC_DEFINE_UNQUOTED(CPP_NAME, "$CPP_NAME",
|
||||
[Define this to the command line for the C preprocessor])
|
||||
AC_DEFINE_UNQUOTED(QFCC_INCLUDE_PATH, "${prefix}/include/QF/ruamoko",
|
||||
[Define this to where qfcc should look for header files])
|
||||
eval expanded_libdir="${libdir}/ruamoko"
|
||||
eval expanded_libdir="${libdir}"
|
||||
eval expanded_libdir="${expanded_libdir}"
|
||||
AC_DEFINE_UNQUOTED(QFCC_LIB_PATH, "${expanded_libdir}",
|
||||
AC_DEFINE_UNQUOTED(QFCC_INCLUDE_PATH, "${expanded_libdir}/qfcc/include",
|
||||
[Define this to where qfcc should look for header files])
|
||||
AC_DEFINE_UNQUOTED(QFCC_LIB_PATH, "${expanded_libdir}/qfcc/lib",
|
||||
[Define this to where qfcc should look for lib files])
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@/ruamoko
|
||||
includedir=@prefix@/include/QF/ruamoko
|
||||
libdir=@libdir@/qfcc/lib
|
||||
includedir=@libdir@/qfcc/include
|
||||
|
||||
Name: qfcc
|
||||
Description: Ruamoko/QuakeC compiler/linker
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
pkglibdir=$(libdir)/ruamoko
|
||||
pkglibdir=$(libdir)/qfcc/lib
|
||||
|
||||
QFCC=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
||||
QCFLAGS=-qq -g -Werror -Wall -Wno-integer-divide
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
pkgincludedir= $(includedir)/QF/ruamoko
|
||||
pkgincludedir= $(libdir)/qfcc/include
|
||||
nobase_pkginclude_HEADERS= \
|
||||
crudefile.h debug.h entities.h infokey.h math.h message.h nq_message.h \
|
||||
physics.h qfile.h qfs.h qw_message.h qw_physics.h qw_sys.h server.h \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
pkglibdir=$(libdir)/ruamoko
|
||||
pkglibdir=$(libdir)/qfcc/lib
|
||||
|
||||
QFCC=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
||||
QCFLAGS=-qq -g -Wall -Wno-integer-divide -Werror
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
pkglibdir=$(libdir)/ruamoko
|
||||
pkglibdir=$(libdir)/qfcc/lib
|
||||
|
||||
QFCC_DEP=$(top_builddir)/tools/qfcc/source/qfcc$(EXEEXT)
|
||||
QFCC=$(QFCC_DEP)
|
||||
|
|
Loading…
Reference in a new issue