Skip to content
Snippets Groups Projects
Commit 0ec33685 authored by Raymond Toy's avatar Raymond Toy
Browse files

Remove lisp.a when cleaning; update usags.

 * make clean should remove lisp.a
 * Use $(RM) instead of rm.
 * Use $(AR) instead of ar.
parent 394a28df
No related branches found
No related tags found
No related merge requests found
...@@ -49,10 +49,10 @@ lisp: ${OBJS} version.o ...@@ -49,10 +49,10 @@ lisp: ${OBJS} version.o
# builtin_image_flag to 1 so that the runtime knows the runtime # builtin_image_flag to 1 so that the runtime knows the runtime
# contains the core sections. # contains the core sections.
lisp.a: version.o ${OBJS} ${EXEC_FINAL_OBJ} lisp.a: version.o ${OBJS} ${EXEC_FINAL_OBJ}
ar crs lisp.a ${OBJS} version.o $(AR) crs lisp.a ${OBJS} version.o
ifneq (${EXEC_FINAL_OBJ},) ifneq (${EXEC_FINAL_OBJ},)
ar d lisp.a exec-init.o $(AR) d lisp.a exec-init.o
ar r lisp.a ${EXEC_FINAL_OBJ} $(AR) r lisp.a ${EXEC_FINAL_OBJ}
endif endif
version: version:
...@@ -63,7 +63,7 @@ internals.h internals.inc: ...@@ -63,7 +63,7 @@ internals.h internals.inc:
@false @false
clean: clean:
rm -f Depends *.o lisp lisp.nm core $(RM) Depends *.o lisp lisp.nm core lisp.a
echo 'Map file for lisp version 0' > lisp.nm echo 'Map file for lisp version 0' > lisp.nm
depend: Depends depend: Depends
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment