minor changes, trim trailing spaces
This commit is contained in:
parent
3a80f80039
commit
f7b194f741
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,6 +7,7 @@
|
|||||||
*.lof
|
*.lof
|
||||||
*.log
|
*.log
|
||||||
*.toc
|
*.toc
|
||||||
|
*.out
|
||||||
|
|
||||||
test
|
test
|
||||||
test.exe
|
test.exe
|
||||||
|
6
makefile
6
makefile
@ -10,7 +10,9 @@ ifndef PREFIX
|
|||||||
PREFIX=
|
PREFIX=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CC?=$(PREFIX)gcc
|
ifeq ($(CC),cc)
|
||||||
|
CC = $(PREFIX)gcc
|
||||||
|
endif
|
||||||
LD=$(PREFIX)ld
|
LD=$(PREFIX)ld
|
||||||
AR=$(PREFIX)ar
|
AR=$(PREFIX)ar
|
||||||
RANLIB=$(PREFIX)ranlib
|
RANLIB=$(PREFIX)ranlib
|
||||||
@ -164,7 +166,7 @@ clean:
|
|||||||
rm -f `find . -type f -name "*.dyn" | xargs`
|
rm -f `find . -type f -name "*.dyn" | xargs`
|
||||||
rm -f `find . -type f -name "*.dpi" | xargs`
|
rm -f `find . -type f -name "*.dpi" | xargs`
|
||||||
rm -rf `find . -type d -name "*.libs" | 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
|
cd mtest; MAKE=${MAKE} ${MAKE} clean
|
||||||
|
|
||||||
no_oops: clean
|
no_oops: clean
|
||||||
|
Loading…
Reference in New Issue
Block a user