[build] Clean up a pile of distcheck issues

This commit is contained in:
Bill Currie 2021-12-21 00:40:47 +09:00
parent 2d109e615b
commit 2cb987fdb5
5 changed files with 36 additions and 3 deletions

View File

@ -40,6 +40,7 @@ EXTRA_DIST += \
include/gib_vars.h \ include/gib_vars.h \
include/gl_warp_sin.h \ include/gl_warp_sin.h \
include/in_win.h \ include/in_win.h \
include/in_x11.h \
include/logos.h \ include/logos.h \
include/mod_internal.h \ include/mod_internal.h \
include/net_dgrm.h \ include/net_dgrm.h \
@ -54,6 +55,7 @@ EXTRA_DIST += \
include/ops.h \ include/ops.h \
include/pstdint.h \ include/pstdint.h \
include/qfalloca.h \ include/qfalloca.h \
include/qfselect.h \
include/qstring.h \ include/qstring.h \
include/quakeasm.h \ include/quakeasm.h \
include/quicksort.h \ include/quicksort.h \
@ -81,8 +83,10 @@ EXTRA_DIST += \
include/world.h \ include/world.h \
include/client/effects.h \ include/client/effects.h \
include/client/entities.h \ include/client/entities.h \
include/client/input.h \
include/client/temp_entities.h \ include/client/temp_entities.h \
include/client/locs.h \ include/client/locs.h \
include/client/particles.h \
include/client/state.h \ include/client/state.h \
include/client/view.h \ include/client/view.h \
include/evdev/hotplug.h \ include/evdev/hotplug.h \

View File

@ -27,6 +27,7 @@ include_qf = \
include/QF/joystick.h \ include/QF/joystick.h \
include/QF/keys.h \ include/QF/keys.h \
include/QF/link.h \ include/QF/link.h \
include/QF/listener.h \
include/QF/llist.h \ include/QF/llist.h \
include/QF/mathlib.h \ include/QF/mathlib.h \
include/QF/mdfour.h \ include/QF/mdfour.h \
@ -112,9 +113,10 @@ include_qf_glsl = \
include/QF/GLSL/types.h include/QF/GLSL/types.h
include_qf_input = \ include_qf_input = \
include/QF/binding.h \ include/QF/input/binding.h \
include/QF/event.h include/QF/input/event.h \
include/QF/imt.h include/QF/input/event_names.h \
include/QF/input/imt.h
include_qf_math = \ include_qf_math = \
include/QF/math/dual.h \ include/QF/math/dual.h \
@ -175,8 +177,10 @@ include_qf_vulkan = \
include/QF/Vulkan/qf_lighting.h \ include/QF/Vulkan/qf_lighting.h \
include/QF/Vulkan/qf_lightmap.h \ include/QF/Vulkan/qf_lightmap.h \
include/QF/Vulkan/qf_main.h \ include/QF/Vulkan/qf_main.h \
include/QF/Vulkan/qf_matrices.h \
include/QF/Vulkan/qf_model.h \ include/QF/Vulkan/qf_model.h \
include/QF/Vulkan/qf_particles.h \ include/QF/Vulkan/qf_particles.h \
include/QF/Vulkan/qf_sprite.h \
include/QF/Vulkan/qf_texture.h \ include/QF/Vulkan/qf_texture.h \
include/QF/Vulkan/qf_vid.h \ include/QF/Vulkan/qf_vid.h \
include/QF/Vulkan/renderpass.h \ include/QF/Vulkan/renderpass.h \

View File

@ -15,3 +15,8 @@ default_input_src = libs/client/default_input.plist
default_input_gen = libs/client/default_input.plc default_input_gen = libs/client/default_input.plc
libs/client/cl_input.lo: libs/client/cl_input.c $(default_input_gen) libs/client/cl_input.lo: libs/client/cl_input.c $(default_input_gen)
EXTRA_DIST += \
libs/client/default_input.plist
CLEANFILES += \
libs/client/*.plc

View File

@ -488,9 +488,18 @@ EXTRA_DIST += \
libs/video/renderer/vulkan/shader/compose.frag \ libs/video/renderer/vulkan/shader/compose.frag \
libs/video/renderer/vulkan/shader/lighting.frag \ libs/video/renderer/vulkan/shader/lighting.frag \
libs/video/renderer/vulkan/shader/passthrough.vert \ libs/video/renderer/vulkan/shader/passthrough.vert \
libs/video/renderer/vulkan/shader/partphysics.comp \
libs/video/renderer/vulkan/shader/partupdate.comp \
libs/video/renderer/vulkan/shader/particle.vert \
libs/video/renderer/vulkan/shader/particle.geom \
libs/video/renderer/vulkan/shader/particle.frag \
libs/video/renderer/vulkan/shader/pushcolor.frag \ libs/video/renderer/vulkan/shader/pushcolor.frag \
libs/video/renderer/vulkan/shader/quakebsp.frag \ libs/video/renderer/vulkan/shader/quakebsp.frag \
libs/video/renderer/vulkan/shader/quakebsp.vert \ libs/video/renderer/vulkan/shader/quakebsp.vert \
libs/video/renderer/vulkan/shader/shadow.geom \ libs/video/renderer/vulkan/shader/shadow.geom \
libs/video/renderer/vulkan/shader/sprite_depth.vert \
libs/video/renderer/vulkan/shader/sprite_depth.frag \
libs/video/renderer/vulkan/shader/sprite_gbuf.vert \
libs/video/renderer/vulkan/shader/sprite_gbuf.frag \
libs/video/renderer/vulkan/shader/twod.frag \ libs/video/renderer/vulkan/shader/twod.frag \
libs/video/renderer/vulkan/shader/twod.vert libs/video/renderer/vulkan/shader/twod.vert

View File

@ -166,6 +166,7 @@ EXTRA_DIST += \
ruamoko/qwaq/debugger/debugger.h \ ruamoko/qwaq/debugger/debugger.h \
ruamoko/qwaq/debugger/localsdata.h \ ruamoko/qwaq/debugger/localsdata.h \
ruamoko/qwaq/debugger/typeencodings.h \ ruamoko/qwaq/debugger/typeencodings.h \
ruamoko/qwaq/debugger/views/arrayview.h \
ruamoko/qwaq/debugger/views/basicview.h \ ruamoko/qwaq/debugger/views/basicview.h \
ruamoko/qwaq/debugger/views/defview.h \ ruamoko/qwaq/debugger/views/defview.h \
ruamoko/qwaq/debugger/views/doubleview.h \ ruamoko/qwaq/debugger/views/doubleview.h \
@ -173,19 +174,28 @@ EXTRA_DIST += \
ruamoko/qwaq/debugger/views/fieldview.h \ ruamoko/qwaq/debugger/views/fieldview.h \
ruamoko/qwaq/debugger/views/floatview.h \ ruamoko/qwaq/debugger/views/floatview.h \
ruamoko/qwaq/debugger/views/funcview.h \ ruamoko/qwaq/debugger/views/funcview.h \
ruamoko/qwaq/debugger/views/indexview.h \
ruamoko/qwaq/debugger/views/intview.h \ ruamoko/qwaq/debugger/views/intview.h \
ruamoko/qwaq/debugger/views/nameview.h \ ruamoko/qwaq/debugger/views/nameview.h \
ruamoko/qwaq/debugger/views/pointerview.h \ ruamoko/qwaq/debugger/views/pointerview.h \
ruamoko/qwaq/debugger/views/quatview.h \ ruamoko/qwaq/debugger/views/quatview.h \
ruamoko/qwaq/debugger/views/stringview.h \ ruamoko/qwaq/debugger/views/stringview.h \
ruamoko/qwaq/debugger/views/structview.h \
ruamoko/qwaq/debugger/views/uintview.h \ ruamoko/qwaq/debugger/views/uintview.h \
ruamoko/qwaq/debugger/views/vectorview.h \ ruamoko/qwaq/debugger/views/vectorview.h \
ruamoko/qwaq/debugger/views/voidview.h \ ruamoko/qwaq/debugger/views/voidview.h \
ruamoko/qwaq/device/axisdata.h \
ruamoko/qwaq/device/axisview.h \
ruamoko/qwaq/device/nameview.h \
ruamoko/qwaq/device/device.h \
ruamoko/qwaq/editor/editbuffer.h \ ruamoko/qwaq/editor/editbuffer.h \
ruamoko/qwaq/editor/editor.h \ ruamoko/qwaq/editor/editor.h \
ruamoko/qwaq/editor/status.h \ ruamoko/qwaq/editor/status.h \
ruamoko/qwaq/input-app.h \
ruamoko/qwaq/qwaq-app.h \ ruamoko/qwaq/qwaq-app.h \
ruamoko/qwaq/qwaq-input.h \
ruamoko/qwaq/qwaq.h \ ruamoko/qwaq/qwaq.h \
ruamoko/qwaq/threading.h \
ruamoko/qwaq/ui/button.h \ ruamoko/qwaq/ui/button.h \
ruamoko/qwaq/ui/color.h \ ruamoko/qwaq/ui/color.h \
ruamoko/qwaq/ui/curses.h \ ruamoko/qwaq/ui/curses.h \
@ -197,6 +207,7 @@ EXTRA_DIST += \
ruamoko/qwaq/ui/proxyview.h \ ruamoko/qwaq/ui/proxyview.h \
ruamoko/qwaq/ui/rect.h \ ruamoko/qwaq/ui/rect.h \
ruamoko/qwaq/ui/scrollbar.h \ ruamoko/qwaq/ui/scrollbar.h \
ruamoko/qwaq/ui/stringview.h \
ruamoko/qwaq/ui/tableview.h \ ruamoko/qwaq/ui/tableview.h \
ruamoko/qwaq/ui/textcontext.h \ ruamoko/qwaq/ui/textcontext.h \
ruamoko/qwaq/ui/titlebar.h \ ruamoko/qwaq/ui/titlebar.h \