mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
use a little less make recursion. should speed up builds a bit
This commit is contained in:
parent
bc6204335a
commit
77d266d938
8 changed files with 15 additions and 28 deletions
|
@ -2156,9 +2156,6 @@ AC_OUTPUT(
|
|||
|
||||
include/Makefile
|
||||
include/QF/Makefile
|
||||
include/QF/GL/Makefile
|
||||
include/QF/plugin/Makefile
|
||||
include/QF/classes/Makefile
|
||||
|
||||
libs/Makefile
|
||||
libs/audio/Makefile
|
||||
|
|
3
include/QF/GL/.gitignore
vendored
3
include/QF/GL/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
.vimrc
|
||||
Makefile
|
||||
Makefile.in
|
|
@ -1,6 +0,0 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
includedir = $(prefix)/include/QF/GL
|
||||
include_HEADERS = ati.h defines.h extensions.h funcs.h qf_explosions.h \
|
||||
qf_funcs_list.h qf_lightmap.h qf_noisetextures.h qf_rlight.h \
|
||||
qf_rmain.h qf_rsurf.h qf_screen.h qf_sky.h qf_textures.h qf_vid.h \
|
||||
types.h
|
|
@ -1,7 +1,7 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
SUBDIRS = GL plugin classes
|
||||
includedir = $(prefix)/include/QF
|
||||
include_HEADERS = bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
||||
nobase_include_HEADERS = \
|
||||
bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
||||
console.h crc.h csqc.h cvar.h dstring.h draw.h gib.h hash.h hl.h \
|
||||
idparse.h image.h in_event.h info.h input.h joystick.h keys.h link.h \
|
||||
llist.h locs.h mathlib.h mdfour.h model.h modelgen.h msg.h object.h pak.h \
|
||||
|
@ -9,4 +9,16 @@ include_HEADERS = bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
|||
qargs.h qdefs.h qendian.h qfplist.h qtypes.h quakefs.h quakeio.h render.h \
|
||||
riff.h ruamoko.h screen.h sizebuf.h skin.h sound.h spritegn.h sys.h \
|
||||
teamplay.h tga.h uint32.h va.h ver_check.h vid.h view.h wad.h wadfile.h \
|
||||
zone.h
|
||||
zone.h \
|
||||
\
|
||||
GL/ati.h GL/defines.h GL/extensions.h GL/funcs.h GL/qf_explosions.h \
|
||||
GL/qf_funcs_list.h GL/qf_lightmap.h GL/qf_noisetextures.h \
|
||||
GL/qf_rlight.h GL/qf_rmain.h GL/qf_rsurf.h GL/qf_screen.h GL/qf_sky.h \
|
||||
GL/qf_textures.h GL/qf_vid.h GL/types.h \
|
||||
\
|
||||
classes/ArrayList.h classes/Collection.h classes/Double.h \
|
||||
classes/Exception.h classes/Integer.h classes/Iterator.h classes/List.h \
|
||||
classes/Number.h classes/String.h \
|
||||
\
|
||||
plugin/cd.h plugin/console.h plugin/general.h plugin/input.h \
|
||||
plugin/snd_output.h plugin/snd_render.h
|
||||
|
|
3
include/QF/classes/.gitignore
vendored
3
include/QF/classes/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
.vimrc
|
||||
Makefile
|
||||
Makefile.in
|
|
@ -1,4 +0,0 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
includedir = $(prefix)/include/QF/classes
|
||||
include_HEADERS = ArrayList.h Collection.h Double.h Exception.h Integer.h \
|
||||
Iterator.h List.h Number.h String.h
|
3
include/QF/plugin/.gitignore
vendored
3
include/QF/plugin/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
.vimrc
|
||||
Makefile
|
||||
Makefile.in
|
|
@ -1,3 +0,0 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
includedir = $(prefix)/include/QF/plugin
|
||||
include_HEADERS = cd.h console.h general.h input.h snd_output.h snd_render.h
|
Loading…
Reference in a new issue