mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
Merge remote-tracking branch 'l/master'
This commit is contained in:
commit
a0abf99f72
6 changed files with 33 additions and 19 deletions
24
Makefile
24
Makefile
|
@ -1,6 +1,8 @@
|
|||
.PHONY: doc test bench
|
||||
.NOTPARALLEL: clean
|
||||
|
||||
export PREFIX="$(DESTDIR)/usr"
|
||||
|
||||
indent_args = -nbad -bap -bbo -nbc -br -brs -ncdb -cdw -ce -ci4 -cli0 -cs -d0 -di1 \
|
||||
-nfc1 -nfca -hnl -i4 -ip0 -l80 -lp -npcs -nprs -npsl -saf -sai -saw -nsc -nsob -nss
|
||||
|
||||
|
@ -9,15 +11,31 @@ all:
|
|||
|
||||
it: all
|
||||
|
||||
destdir:
|
||||
-@if test "foo$(DESTDIR)" != "foo" ; then \
|
||||
mkdir "$(DESTDIR)" ;\
|
||||
fi
|
||||
@if test "foo$(PREFIX)" = "foo" ; then \
|
||||
echo "libpsyc install: You must provide a PREFIX=/usr or such." ;\
|
||||
exit 2 ;\
|
||||
else true; fi
|
||||
-@if [ ! -w "$(PREFIX)" ]; then \
|
||||
mkdir "$(PREFIX)" ;\
|
||||
fi
|
||||
@if [ ! -w "$(PREFIX)" ]; then \
|
||||
echo "libpsyc install: You must provide a writable PREFIX." ;\
|
||||
exit 2 ;\
|
||||
else true; fi
|
||||
|
||||
install: install-lib install-inc install-d
|
||||
|
||||
install-lib: all
|
||||
install-lib: destdir all
|
||||
${MAKE} -C lib install
|
||||
|
||||
install-inc: all
|
||||
install-inc: destdir all
|
||||
${MAKE} -C include install
|
||||
|
||||
install-d: all
|
||||
install-d: destdir all
|
||||
${MAKE} -C d install
|
||||
|
||||
debug:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue