source: CMT/v1r19/mgr/fragments/nmake/install_includes_header @ 1

Last change on this file since 1 was 1, checked in by arnault, 19 years ago

Import all tags

File size: 720 bytes
Line 
1
2#
3#  We want to install all header files that follow the standard convention
4#
5#    ../<package>
6#
7
8install_dir = $(CMTINSTALLAREA)\include
9
10${CONSTITUENT} :: ${CONSTITUENT}install
11
12install :: ${CONSTITUENT}install
13
14${CONSTITUENT}install :: $(install_dir)
15        @if NOT "$(CMTINSTALLAREA)"=="" echo "installation done"
16
17$(install_dir) ::
18        @if NOT "$(CMTINSTALLAREA)"=="" $(cmt_installdir_action) "$(PACKAGE_ROOT)" "$(package)" "$(install_dir)" "$(cmt_installdir_excludes)"
19
20${CONSTITUENT}clean :: ${CONSTITUENT}uninstall
21
22uninstall :: ${CONSTITUENT}uninstall
23
24${CONSTITUENT}uninstall ::
25        @if NOT "$(CMTINSTALLAREA)"=="" $(cmt_uninstalldir_action) "$(PACKAGE_ROOT)" "$(package)" "$(install_dir)"
26
27
Note: See TracBrowser for help on using the repository browser.