Make make clean not only remove the object files, but also the library.

This commit is contained in:
Hanno Spreeuw 2018-01-22 17:12:01 +01:00
parent 3cc6bc600c
commit e8f3fefec1
2 changed files with 2 additions and 2 deletions

View File

@ -54,4 +54,4 @@ libdirac.a:$(OBJECTS) Dirac.h
$(RANLIB) $@;
clean:
rm *.o
rm *.o libdirac.a

View File

@ -35,4 +35,4 @@ libradio.a:$(OBJECTS) Radio.h
ar rv $@ $(OBJECTS); \
$(RANLIB) $@;
clean:
rm *.o
rm *.o libradio.a