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

Annotation of src/include/Makefile, Revision 1.154

1.154   ! drahn       1: #      $OpenBSD: Makefile,v 1.153 2010/02/03 20:49:58 miod 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.107     art        13: FILES= a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h cast.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.149     ratchov    21:        sgtty.h sha1.h sha2.h skipjack.h signal.h sndio.h stab.h \
                     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.149     ratchov    44:        ../lib/libskey ../lib/libsectok ../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.124     drahn      61: WDIRS+= ../gnu/lib/libstdc++ ../gnu/usr.bin/gcc ../gnu/lib/libobjc \
                     62:        ../gnu/lib/libf2c
                     63: PWDIRS+= ../gnu/lib/libstdc++ ../gnu/lib/libf2c
1.154   ! drahn      64: .elif ${COMPILER_VERSION:L} == "gcc4"
        !            65: RDIRS+= ../gnu/lib/libstdc++-v3 ../gnu/usr.bin/cc/libobjc
        !            66: PRDIRS+= ../gnu/lib/libstdc++-v3
        !            67: RDIRS+= ../gnu/usr.bin/cc/include
1.123     espie      68: .else
                     69: WDIRS+= ../gnu/egcs/libio ../gnu/egcs/libstdc++ \
1.132     espie      70:        ../gnu/egcs/libf2c ../gnu/lib/libobjc ../gnu/egcs/gcc
1.123     espie      71: PWDIRS+= ../gnu/egcs/libf2c
                     72: .endif
1.61      niklas     73:
1.1       deraadt    74: NOOBJ= noobj
                     75:
                     76: # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
                     77: SYS_INCLUDE?=  copies
1.94      hin        78: .if ${KERBEROS5:L} == "yes"
1.119     mho        79: RDIRS+= ../lib/libkrb5 ../lib/libgssapi ../lib/libkadm5srv
1.9       tholo      80: .endif
1.61      niklas     81:
                     82: prereq:
1.91      espie      83:        @for i in ${PRDIRS}; do \
1.62      niklas     84:                echo preparing in ${.CURDIR}/$$i; \
1.91      espie      85:                cd ${.CURDIR}/$$i && ${MAKE} prereq; \
1.62      niklas     86:        done
1.91      espie      87:        @for i in ${PWDIRS}; do \
1.61      niklas     88:                echo preparing in ${.CURDIR}/$$i; \
1.91      espie      89:                cd ${.CURDIR}/$$i && ${MAKE} -f Makefile.bsd-wrapper prereq; \
1.61      niklas     90:        done
1.1       deraadt    91:
1.6       deraadt    92: includes:
1.1       deraadt    93:        @echo installing ${FILES}
1.91      espie      94:        @for i in ${FILES}; do \
1.1       deraadt    95:                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
1.40      millert    96:                    ${INSTALL} ${INSTALL_COPY} -m 444 $$i ${DESTDIR}/usr/include/$$i; \
1.1       deraadt    97:        done
                     98:        @echo installing ${DIRS}
1.91      espie      99:        @for i in ${DIRS}; do \
1.32      downsj    100:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt   101:                        ${DESTDIR}/usr/include/$$i; \
1.91      espie     102:                cd ${.CURDIR}/$$i && for j in *.[ih]; do \
1.1       deraadt   103:                        cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
1.40      millert   104:                        ${INSTALL} ${INSTALL_COPY} -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
1.91      espie     105:                done; \
1.1       deraadt   106:        done
1.118     markus    107:        @rm -rf ${DESTDIR}/usr/include/openssl ${DESTDIR}/usr/include/ssl \
1.153     miod      108:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/ssl \
                    109:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/openssl
1.118     markus    110:        @mkdir ${DESTDIR}/usr/include/openssl
                    111:        @ln -sf openssl ${DESTDIR}/usr/include/ssl
1.1       deraadt   112:        @echo installing ${LFILES}
1.91      espie     113:        @for i in ${LFILES}; do \
                    114:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   115:                ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
                    116:        done
                    117:        @echo installing ${MFILES}
1.91      espie     118:        @for i in ${MFILES}; do \
                    119:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   120:                ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
1.2       deraadt   121:        done
1.1       deraadt   122:        chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include
1.136     deraadt   123:        find ${DESTDIR}/usr/include -type f -print0 | \
                    124:                xargs -0r chmod a=r
                    125:        find ${DESTDIR}/usr/include -type d -print0 | \
                    126:                xargs -0r chmod u=rwx,go=rx
1.91      espie     127:        @for i in ${RDIRS}; do \
1.7       deraadt   128:                echo installing in ${.CURDIR}/$$i; \
1.91      espie     129:                cd ${.CURDIR}/$$i && ${MAKE} includes; \
1.47      niklas    130:        done
1.91      espie     131:        @for i in ${WDIRS}; do \
1.47      niklas    132:                echo installing in ${.CURDIR}/$$i; \
1.91      espie     133:                cd ${.CURDIR}/$$i && ${MAKE} -f Makefile.bsd-wrapper includes; \
1.7       deraadt   134:        done
1.1       deraadt   135:
                    136: copies:
                    137:        @echo copies: ${LDIRS}
1.91      espie     138:        @for i in ${LDIRS}; do \
                    139:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.32      downsj    140:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt   141:                        ${DESTDIR}/usr/include/$$i ; \
                    142:        done
                    143:        cd ../sys; \
                    144:        pax -rw -pa -L \
1.101     mickey    145:            `find ${LDIRS} -follow -type f -name '*.h' \
                    146:            '!' -path 'dev/microcode/*' -print` ${DESTDIR}/usr/include
1.153     miod      147:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.32      downsj    148:        ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.65      espie     149:                ${DESTDIR}/usr/include/${MACHINE}
1.111     itojun    150:        pax -rw -pa -s "|\.\./sys/arch/${MACHINE}/include||" \
                    151:            ../sys/arch/${MACHINE}/include/*.h \
                    152:            ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      153:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    154:            -d ../sys/arch/${MACHINE_CPU}/include; then \
1.32      downsj    155:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.153     miod      156:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
                    157:                pax -rw -pa -s "|\.\./sys/arch/${MACHINE_CPU}/include||" \
                    158:                    ../sys/arch/${MACHINE_CPU}/include/*.h \
                    159:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
1.1       deraadt   160:        fi
1.65      espie     161:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine; \
1.1       deraadt   162:
                    163: symlinks:
                    164:        @echo symlinks: ${LDIRS}
                    165:        @for i in ${LDIRS}; do \
1.91      espie     166:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   167:                ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                    168:        done
1.153     miod      169:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.65      espie     170:        ln -s /sys/arch/${MACHINE}/include ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      171:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    172:            -d ../sys/arch/${MACHINE_CPU}/include ; then \
                    173:                ln -s /sys/arch/${MACHINE_CPU}/include \
                    174:                    ${DESTDIR}/usr/include/${MACHINE_CPU} ; \
1.1       deraadt   175:        fi
1.91      espie     176:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine
1.1       deraadt   177:
1.6       deraadt   178: includes: ${SYS_INCLUDE}
                    179:
1.91      espie     180: .PHONY: prereq includes copies symlink
1.1       deraadt   181: .include <bsd.prog.mk>