mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40:42 +00:00
qf now, for the first time in history, fully passes "make distcheck"
This commit is contained in:
parent
fbd30746c9
commit
ddae3850e8
3 changed files with 14 additions and 6 deletions
|
@ -11,8 +11,8 @@ else
|
||||||
asm=
|
asm=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#noinst_LTLIBRARIES= $(asm)
|
noinst_LTLIBRARIES= $(asm)
|
||||||
EXTRA_LTLIBRARIES= libasm.la
|
#EXTRA_LTLIBRARIES= libasm.la
|
||||||
|
|
||||||
libasm_la_SOURCES= math.S sys_ia32.S
|
libasm_la_SOURCES= math.S sys_ia32.S
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,4 @@ EXTRA_DIST = \
|
||||||
cl_cam.h cl_chat.h cl_demo.h cl_ents.h cl_input.h \
|
cl_cam.h cl_chat.h cl_demo.h cl_ents.h cl_input.h \
|
||||||
cl_main.h cl_parse.h cl_pred.h cl_skin.h cl_slist.h cl_tent.h \
|
cl_main.h cl_parse.h cl_pred.h cl_skin.h cl_slist.h cl_tent.h \
|
||||||
client.h crudefile.h game.h host.h map_cfg.h server.h sv_gib.h \
|
client.h crudefile.h game.h host.h map_cfg.h server.h sv_gib.h \
|
||||||
sv_demo.h sv_pr_cmds.h sv_pr_qwe.h sv_progs.h sv_qtv.h
|
sv_demo.h sv_pr_cmds.h sv_pr_qwe.h sv_progs.h sv_qtv.h sv_recorder.h
|
||||||
|
|
|
@ -32,6 +32,14 @@ EXTRA_LIBRARIES= $(scheme_libs)
|
||||||
pkgdata_DATA= $(data)
|
pkgdata_DATA= $(data)
|
||||||
EXTRA_DATA = $(scheme_data)
|
EXTRA_DATA = $(scheme_data)
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
BaseContinuation.h Boolean.h CompiledCode.h Compiler.h Cons.h \
|
||||||
|
Continuation.h Error.h Frame.h Instruction.h Lambda.h Lexer.h \
|
||||||
|
Machine.h Nil.h Number.h Parser.h Primitive.h Procedure.h \
|
||||||
|
SchemeObject.h SchemeString.h Scope.h Symbol.h Void.h builtins.h \
|
||||||
|
debug.h defs.h state.h \
|
||||||
|
\
|
||||||
|
main.qc defs.qc
|
||||||
|
|
||||||
%.qfo: %.r
|
%.qfo: %.r
|
||||||
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
||||||
|
@ -42,8 +50,8 @@ EXTRA_DATA = $(scheme_data)
|
||||||
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
libscheme_a_SOURCES=\
|
libscheme_a_SOURCES=\
|
||||||
SchemeObject.r Cons.r Number.r SchemeString.r Symbol.r Lexer.r Parser.r Nil.r \
|
SchemeObject.r Cons.r Number.r SchemeString.r Symbol.r Lexer.r Parser.r \
|
||||||
Procedure.r Primitive.r Lambda.r Scope.r Instruction.r builtins.r \
|
Nil.r Procedure.r Primitive.r Lambda.r Scope.r Instruction.r builtins.r \
|
||||||
Frame.r CompiledCode.r Compiler.r Continuation.r Machine.r Void.r \
|
Frame.r CompiledCode.r Compiler.r Continuation.r Machine.r Void.r \
|
||||||
Error.r Boolean.r BaseContinuation.r
|
Error.r Boolean.r BaseContinuation.r
|
||||||
libscheme_a_AR=$(PAK) -cf
|
libscheme_a_AR=$(PAK) -cf
|
||||||
|
@ -60,4 +68,4 @@ main.dat$(GZ): $(scheme_obj) $(QFCC_DEP) ../lib/libcsqc.a ../lib/libr.a libschem
|
||||||
$(QFCC) $(QCFLAGS) -p $(STRIP) -o main.dat $(scheme_obj) libscheme.a ../lib/libcsqc.a ../lib/libr.a
|
$(QFCC) $(QCFLAGS) -p $(STRIP) -o main.dat $(scheme_obj) libscheme.a ../lib/libcsqc.a ../lib/libr.a
|
||||||
$(GZIP)
|
$(GZIP)
|
||||||
|
|
||||||
CLEANFILES= *.qfo *.o
|
CLEANFILES= *.dat *.sym *.gz *.qfo *.o
|
||||||
|
|
Loading…
Reference in a new issue