[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / include

Annotation of src/include/Makefile, Revision 1.157

1.157   ! mikeb       1: #      $OpenBSD: Makefile,v 1.156 2010/10/17 08:44:15 djm Exp $
1.8       deraadt     2: #      $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $
1.1       deraadt     3:
                      4: #      @(#)Makefile    5.45.1.1 (Berkeley) 5/6/91
                      5:
                      6: # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
                      7: # links.
                      8:
1.123     espie       9:
                     10: .include <bsd.own.mk>
                     11:
1.1       deraadt    12: # Missing: mp.h
1.157   ! mikeb      13: FILES= a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h \
1.146     martynas   14:        complex.h cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h \
1.137     millert    15:        dlfcn.h elf_abi.h err.h errno.h fnmatch.h fstab.h fts.h ftw.h getopt.h \
1.121     millert    16:        glob.h grp.h ifaddrs.h inttypes.h iso646.h kvm.h langinfo.h \
                     17:        libgen.h limits.h locale.h login_cap.h malloc.h math.h md4.h \
                     18:        md5.h memory.h mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h \
1.144     deraadt    19:        ohash.h paths.h poll.h pwd.h ranlib.h re_comp.h \
1.121     millert    20:        readpassphrase.h regex.h resolv.h rmd160.h search.h setjmp.h \
1.157   ! mikeb      21:        sgtty.h sha1.h sha2.h signal.h sndio.h stab.h \
1.149     ratchov    22:        stdbool.h stddef.h stdio.h stdlib.h \
                     23:        string.h strings.h struct.h sysexits.h tar.h \
1.130     espie      24:        time.h ttyent.h tzfile.h unistd.h utime.h utmp.h vis.h \
                     25:        wchar.h wctype.h
1.8       deraadt    26:
1.108     art        27: FILES+=        link.h link_aout.h link_elf.h
1.86      hugh       28:
                     29: .if (${MACHINE_ARCH} != "vax")
                     30: FILES+= ieeefp.h
1.8       deraadt    31: .endif
1.1       deraadt    32:
1.122     espie      33: MFILES=        float.h frame.h
1.138     millert    34: LFILES=        fcntl.h syslog.h termios.h stdarg.h stdint.h varargs.h
1.1       deraadt    35:
                     36: DIRS=  arpa protocols rpc rpcsvc
1.151     millert    37: LDIRS= altq crypto ddb dev isofs miscfs msdosfs net netatalk netinet netinet6 \
1.152     millert    38:        netmpls netnatm net80211 netbt nfs nnpfs ntfs scsi sys ufs uvm
1.1       deraadt    39:
1.61      niklas     40: # Directories with an includes target
1.120     deraadt    41: RDIRS= ../lib/libpthread ../lib/libcompat ../lib/libcurses \
1.131     millert    42:        ../lib/libform ../lib/libssl ../lib/libmenu \
1.104     deraadt    43:        ../lib/libocurses ../lib/libossaudio ../lib/libpanel ../lib/librpcsvc \
1.156     djm        44:        ../lib/libskey ../lib/libedit ../lib/libexpat \
1.141     deraadt    45:        ../lib/libpcap ../lib/libutil ../lib/libusbhid ../lib/libwrap \
                     46:        ../lib/libz ../lib/libkeynote ../lib/libevent ../usr.bin/lex \
1.127     millert    47:        ../gnu/lib/libreadline ../gnu/usr.sbin/sendmail/libmilter \
1.104     deraadt    48:        ../sys/arch/${MACHINE}
1.7       deraadt    49:
1.62      niklas     50: # Places using Makefile that needs a prerequisite target met before includes
1.113     markus     51: PRDIRS=
1.62      niklas     52:
1.61      niklas     53: # Directories with an includes target that use Makefile.bsd-wrapper
1.145     kettenis   54: WDIRS= ../usr.sbin/httpd
1.47      niklas     55:
1.61      niklas     56: # Places using Makefile.bsd-wrapper that needs a prerequisite target met
                     57: # before includes
1.145     kettenis   58: PWDIRS=
1.123     espie      59:
1.154     drahn      60: .if ${COMPILER_VERSION:L} == "gcc3"
1.155     espie      61: WDIRS+= ../gnu/lib/libstdc++ ../gnu/usr.bin/gcc ../gnu/lib/libobjc
                     62: PWDIRS+= ../gnu/lib/libstdc++
1.154     drahn      63: .elif ${COMPILER_VERSION:L} == "gcc4"
                     64: RDIRS+= ../gnu/lib/libstdc++-v3 ../gnu/usr.bin/cc/libobjc
                     65: PRDIRS+= ../gnu/lib/libstdc++-v3
                     66: RDIRS+= ../gnu/usr.bin/cc/include
1.123     espie      67: .else
                     68: WDIRS+= ../gnu/egcs/libio ../gnu/egcs/libstdc++ \
1.155     espie      69:        ../gnu/lib/libobjc ../gnu/egcs/gcc
1.123     espie      70: .endif
1.61      niklas     71:
1.1       deraadt    72: NOOBJ= noobj
                     73:
                     74: # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
                     75: SYS_INCLUDE?=  copies
1.94      hin        76: .if ${KERBEROS5:L} == "yes"
1.119     mho        77: RDIRS+= ../lib/libkrb5 ../lib/libgssapi ../lib/libkadm5srv
1.9       tholo      78: .endif
1.61      niklas     79:
                     80: prereq:
1.91      espie      81:        @for i in ${PRDIRS}; do \
1.62      niklas     82:                echo preparing in ${.CURDIR}/$$i; \
1.91      espie      83:                cd ${.CURDIR}/$$i && ${MAKE} prereq; \
1.62      niklas     84:        done
1.91      espie      85:        @for i in ${PWDIRS}; do \
1.61      niklas     86:                echo preparing in ${.CURDIR}/$$i; \
1.91      espie      87:                cd ${.CURDIR}/$$i && ${MAKE} -f Makefile.bsd-wrapper prereq; \
1.61      niklas     88:        done
1.1       deraadt    89:
1.6       deraadt    90: includes:
1.1       deraadt    91:        @echo installing ${FILES}
1.91      espie      92:        @for i in ${FILES}; do \
1.1       deraadt    93:                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
1.40      millert    94:                    ${INSTALL} ${INSTALL_COPY} -m 444 $$i ${DESTDIR}/usr/include/$$i; \
1.1       deraadt    95:        done
                     96:        @echo installing ${DIRS}
1.91      espie      97:        @for i in ${DIRS}; do \
1.32      downsj     98:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt    99:                        ${DESTDIR}/usr/include/$$i; \
1.91      espie     100:                cd ${.CURDIR}/$$i && for j in *.[ih]; do \
1.1       deraadt   101:                        cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
1.40      millert   102:                        ${INSTALL} ${INSTALL_COPY} -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
1.91      espie     103:                done; \
1.1       deraadt   104:        done
1.118     markus    105:        @rm -rf ${DESTDIR}/usr/include/openssl ${DESTDIR}/usr/include/ssl \
1.153     miod      106:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/ssl \
                    107:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/openssl
1.118     markus    108:        @mkdir ${DESTDIR}/usr/include/openssl
                    109:        @ln -sf openssl ${DESTDIR}/usr/include/ssl
1.1       deraadt   110:        @echo installing ${LFILES}
1.91      espie     111:        @for i in ${LFILES}; do \
                    112:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   113:                ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
                    114:        done
                    115:        @echo installing ${MFILES}
1.91      espie     116:        @for i in ${MFILES}; do \
                    117:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   118:                ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
1.2       deraadt   119:        done
1.1       deraadt   120:        chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include
1.136     deraadt   121:        find ${DESTDIR}/usr/include -type f -print0 | \
                    122:                xargs -0r chmod a=r
                    123:        find ${DESTDIR}/usr/include -type d -print0 | \
                    124:                xargs -0r chmod u=rwx,go=rx
1.91      espie     125:        @for i in ${RDIRS}; do \
1.7       deraadt   126:                echo installing in ${.CURDIR}/$$i; \
1.91      espie     127:                cd ${.CURDIR}/$$i && ${MAKE} includes; \
1.47      niklas    128:        done
1.91      espie     129:        @for i in ${WDIRS}; do \
1.47      niklas    130:                echo installing in ${.CURDIR}/$$i; \
1.91      espie     131:                cd ${.CURDIR}/$$i && ${MAKE} -f Makefile.bsd-wrapper includes; \
1.7       deraadt   132:        done
1.1       deraadt   133:
                    134: copies:
                    135:        @echo copies: ${LDIRS}
1.91      espie     136:        @for i in ${LDIRS}; do \
                    137:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.32      downsj    138:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt   139:                        ${DESTDIR}/usr/include/$$i ; \
                    140:        done
                    141:        cd ../sys; \
                    142:        pax -rw -pa -L \
1.101     mickey    143:            `find ${LDIRS} -follow -type f -name '*.h' \
                    144:            '!' -path 'dev/microcode/*' -print` ${DESTDIR}/usr/include
1.153     miod      145:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.32      downsj    146:        ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.65      espie     147:                ${DESTDIR}/usr/include/${MACHINE}
1.111     itojun    148:        pax -rw -pa -s "|\.\./sys/arch/${MACHINE}/include||" \
                    149:            ../sys/arch/${MACHINE}/include/*.h \
                    150:            ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      151:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    152:            -d ../sys/arch/${MACHINE_CPU}/include; then \
1.32      downsj    153:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.153     miod      154:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
                    155:                pax -rw -pa -s "|\.\./sys/arch/${MACHINE_CPU}/include||" \
                    156:                    ../sys/arch/${MACHINE_CPU}/include/*.h \
                    157:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
1.1       deraadt   158:        fi
1.65      espie     159:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine; \
1.1       deraadt   160:
                    161: symlinks:
                    162:        @echo symlinks: ${LDIRS}
                    163:        @for i in ${LDIRS}; do \
1.91      espie     164:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   165:                ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                    166:        done
1.153     miod      167:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.65      espie     168:        ln -s /sys/arch/${MACHINE}/include ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      169:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    170:            -d ../sys/arch/${MACHINE_CPU}/include ; then \
                    171:                ln -s /sys/arch/${MACHINE_CPU}/include \
                    172:                    ${DESTDIR}/usr/include/${MACHINE_CPU} ; \
1.1       deraadt   173:        fi
1.91      espie     174:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine
1.1       deraadt   175:
1.6       deraadt   176: includes: ${SYS_INCLUDE}
                    177:
1.91      espie     178: .PHONY: prereq includes copies symlink
1.1       deraadt   179: .include <bsd.prog.mk>