diff options
Diffstat (limited to 'build')
-rwxr-xr-x | build | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -1,15 +1,14 @@ #! /usr/bin/make -f -fakeroot fakeroot-doc: fakeroot.buildstamp - -.SILENT: fakeroot.buildstamp -fakeroot.buildstamp: +build: cd src && \ ./configure --prefix=/usr && \ - make && make DESTDIR=$$(pwd)/../dest install - oh-strip -gl /usr/lib/libfakeroot-0.so - oh-installfiles fakeroot fakeroot-doc - oh-installdocs fakeroot - oh-gencontrol fakeroot fakeroot-doc - oh-buildopk fakeroot fakeroot-doc - touch fakeroot.buildstamp + make && \ + cd .. + +install: + cd src && \ + make DESTDIR=$$(pwd)/../dest install && \ + cd .. + #oh-strip -g + oh-installfiles |