Blob Blame History Raw
--- o/makefile.orig	2019-02-13 15:21:20.166308538 -0700
+++ o/makefile	2019-02-13 15:42:05.159984363 -0700
@@ -48,7 +48,6 @@ prelink.o: prelink.c $(DECL)
 %.o: %.d $(DECL)
 	$(DPP) $*
 	$(CC) -c $(CFLAGS) $(DEFS) $*.c $(AUX_INFO)
-	rm $*.c
 
 boot.ini: boot.c grab_defs
 	$(CC) -DINICOMP -DNO_DEFUN -DNO_BOOT_H $(CFLAGS) $(DEFS) -E $*.c |\
--- xgcl-2/sysdef.lisp.orig	2019-02-13 15:18:04.238283092 -0700
+++ xgcl-2/sysdef.lisp	2019-02-13 15:42:05.160984354 -0700
@@ -47,7 +47,7 @@
 	      (error "compile failure: ~s~%" x))))
 	(directory "*.c"))
   (mapc (lambda (x)
-	  (compile-file (format nil "~a.lsp" x) :system-p t)) *files*))
+	  (compile-file (format nil "~a.lsp" x) :c-file t :h-file t :system-p t)) *files*))
 
 
 (defun load-xgcl()