hmm, core should be part of the rm -f line for the clean target

This commit is contained in:
lindes 2001-08-24 07:24:43 +00:00
parent fac8a6ca46
commit 37a483fe9b
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ ARCH = `uname -s`
OBJS = arch/${ARCH}/getload.o arch/default/homebrews.o
# this is what I use most places...
CC=gcc
CC=gcc -pedantic -Wall
# for the things in the sub-directory:
INCLUDES = -I$${PWD:-.} \
@ -49,7 +49,7 @@ ttyload: $(OBJS) ttyload.o
$(CC) -o $@ $(OBJS) ttyload.o
clean:
rm -f *.o $(OBJS)
rm -f *.o $(OBJS) core a.out
clobber: clean
rm -f loader ttyload