diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-27 11:54:22 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-27 11:54:22 +0100 |
commit | eaa925597d96f69141d42155928d649f4603bd07 (patch) | |
tree | f8d1e52dd49ac6b079d08d25b89a097d2df8b605 /test/main | |
parent | 34cb42ec6c9e2bd4deb465509a58e7f8a9420f80 (diff) |
Support CFLAGS, PREFIX & LDFLAGS in Makefile; pretty make install output
Diffstat (limited to 'test/main')
-rwxr-xr-x | test/main | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,10 +20,10 @@ echo "# make" make -s -B echo "# make install" -make -s install prefix=$testdir +make -s install DESTDIR=$testdir echo "# make uninstall" -make -s uninstall prefix=$testdir +make -s uninstall DESTDIR=$testdir rm -r $testdir |