Blob Blame History Raw
--- ./o/makefile.orig	2014-09-06 09:45:30.000000000 -0600
+++ ./o/makefile	2014-09-06 20:00:00.000000000 -0600
@@ -45,7 +45,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	2014-09-06 09:45:30.000000000 -0600
+++ ./xgcl-2/sysdef.lisp	2014-09-06 20:00:00.000000000 -0600
@@ -48,7 +48,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()