diff --git a/libs/util/Makefile.am b/libs/util/Makefile.am index b450e1c88..efc494d76 100644 --- a/libs/util/Makefile.am +++ b/libs/util/Makefile.am @@ -11,8 +11,8 @@ else asm= endif -#noinst_LTLIBRARIES= $(asm) -EXTRA_LTLIBRARIES= libasm.la +noinst_LTLIBRARIES= $(asm) +#EXTRA_LTLIBRARIES= libasm.la libasm_la_SOURCES= math.S sys_ia32.S diff --git a/qw/include/Makefile.am b/qw/include/Makefile.am index 31abab5c8..473dc596f 100644 --- a/qw/include/Makefile.am +++ b/qw/include/Makefile.am @@ -5,4 +5,4 @@ EXTRA_DIST = \ 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 \ 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 diff --git a/ruamoko/scheme/Makefile.am b/ruamoko/scheme/Makefile.am index 42c8751f8..e0819a71d 100644 --- a/ruamoko/scheme/Makefile.am +++ b/ruamoko/scheme/Makefile.am @@ -32,6 +32,14 @@ EXTRA_LIBRARIES= $(scheme_libs) pkgdata_DATA= $(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 $(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $< @@ -42,8 +50,8 @@ EXTRA_DATA = $(scheme_data) $(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $< libscheme_a_SOURCES=\ - SchemeObject.r Cons.r Number.r SchemeString.r Symbol.r Lexer.r Parser.r Nil.r \ - Procedure.r Primitive.r Lambda.r Scope.r Instruction.r builtins.r \ + SchemeObject.r Cons.r Number.r SchemeString.r Symbol.r Lexer.r Parser.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 \ Error.r Boolean.r BaseContinuation.r 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 $(GZIP) -CLEANFILES= *.qfo *.o +CLEANFILES= *.dat *.sym *.gz *.qfo *.o