diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-07-21 18:28:05 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-07-21 18:28:05 +0000 |
commit | 6a21e8027c455b06f30fd83c6215ad8c42ce2e85 (patch) | |
tree | 2a3075fa451c8826ad34a7a522fbd1d5250e4457 /graphics | |
parent | s/INCLUDEDIR/INCSDIR/ (diff) |
Fixed build on -CURRENT by replacing the matching but non-working 3.x
hacks (each shell command must be preceded by a tab, not spaces) with
the 4.x hacks (bsd.incs.mk soon to be merged).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libflash/files/Makefile | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/graphics/libflash/files/Makefile b/graphics/libflash/files/Makefile index 58e8037fbdbc..e758fc453271 100644 --- a/graphics/libflash/files/Makefile +++ b/graphics/libflash/files/Makefile @@ -16,21 +16,7 @@ SRCS= adpcm.cc bitmap.cc button.cc character.cc cxform.cc \ INCS= flash.h NOMAN= YES LIBDIR= ${LOCALBASE}/lib -INCDIR= ${LOCALBASE}/include +INCSDIR= ${LOCALBASE}/include +INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API .include <bsd.lib.mk> - -# For FreeBSD 3.x or older -.if !target(_includeinstall) -_includeinstall: -.if defined(INCS) -.for header in ${INCS} - cd ${.CURDIR} && \ - ${INSTALL} -C -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \ - ${header} ${DESTDIR}${INCDIR} - -.endfor -.endif - -beforeinstall: _includeinstall -.endif |