openbsd-ports/net/netatalk/patches/patch-include-makefile
brad f22b2212e6 - Fake
- add HOMEPAGE, another distsite, NEED_VERSION and some more docs
- respect CC and CFLAGS
- move RESDIR from share to share/netatalk
- move examples from lib/netatalk to share/examples/netatalk
- remove the need for having the source tree installed, just use the
headers in /usr/include/netatalk
2000-08-10 17:53:31 +00:00

25 lines
538 B
Plaintext

--- include/Makefile.orig Tue Feb 20 11:38:02 1996
+++ include/Makefile Wed Aug 9 08:41:44 2000
@@ -1,16 +1,15 @@
-TARGETS= atalk netatalk
+TARGETS= atalk
INSTALL= install
all :
install : all
- -mkdir ${DESTDIR}
- -mkdir ${INCDIR}
+ -mkdir ${DESTDIR}${INCDIR}
for i in ${TARGETS}; do \
- rm -rf ${INCDIR}/$$i ; \
- mkdir ${INCDIR}/$$i ; \
- cp $$i/*.h ${INCDIR}/$$i ; \
+ rm -rf ${DESTDIR}${INCDIR}/$$i ; \
+ mkdir ${DESTDIR}${INCDIR}/$$i ; \
+ cp $$i/*.h ${DESTDIR}${INCDIR}/$$i ; \
done
clean :