minor changes, trim trailing spaces

This commit is contained in:
Steffen Jaeckel 2014-10-13 13:39:30 +02:00
parent 3a80f80039
commit f7b194f741
4 changed files with 11 additions and 8 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@
*.lof
*.log
*.toc
*.out
test
test.exe

View File

@ -10,7 +10,9 @@ ifndef PREFIX
PREFIX=
endif
CC?=$(PREFIX)gcc
ifeq ($(CC),cc)
CC = $(PREFIX)gcc
endif
LD=$(PREFIX)ld
AR=$(PREFIX)ar
RANLIB=$(PREFIX)ranlib
@ -164,7 +166,7 @@ clean:
rm -f `find . -type f -name "*.dyn" | xargs`
rm -f `find . -type f -name "*.dpi" | xargs`
rm -rf `find . -type d -name "*.libs" | xargs`
rm -f tfm.aux tfm.dvi tfm.idx tfm.ilg tfm.ind tfm.lof tfm.log tfm.toc test test.exe
rm -f tfm.aux tfm.dvi tfm.idx tfm.ilg tfm.ind tfm.lof tfm.log tfm.out tfm.toc test test.exe
cd mtest; MAKE=${MAKE} ${MAKE} clean
no_oops: clean