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

Annotation of src/include/Makefile, Revision 1.168

1.167     deraadt     1: #      $OpenBSD: Makefile,v 1.166 2012/08/23 06:37:47 deraadt 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.164     deraadt    15:        dlfcn.h elf_abi.h err.h errno.h fenv.h float.h fnmatch.h fstab.h fts.h \
                     16:        ftw.h getopt.h glob.h grp.h ifaddrs.h inttypes.h iso646.h kvm.h \
                     17:        langinfo.h libgen.h limits.h locale.h login_cap.h malloc.h math.h md4.h \
1.121     millert    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.161     matthew    21:        sgtty.h sha1.h sha2.h signal.h sndio.h spawn.h stab.h \
1.149     ratchov    22:        stdbool.h stddef.h stdio.h stdlib.h \
1.159     martynas   23:        string.h strings.h struct.h sysexits.h tar.h tgmath.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.164     deraadt    33: MFILES=        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.160     henning    37: LDIRS= altq crypto ddb dev isofs miscfs msdosfs net netinet netinet6 \
1.166     deraadt    38:        netmpls netnatm net80211 netbt nfs ntfs scsi sys ufs uvm
1.1       deraadt    39:
1.163     espie      40: # Places that need a prerequisite target met before includes
                     41: PRDIRS=
                     42:
1.61      niklas     43: # Directories with an includes target
1.165     guenther   44: RDIRS= ../lib/librthread ../lib/libcompat ../lib/libcurses \
1.131     millert    45:        ../lib/libform ../lib/libssl ../lib/libmenu \
1.104     deraadt    46:        ../lib/libocurses ../lib/libossaudio ../lib/libpanel ../lib/librpcsvc \
1.156     djm        47:        ../lib/libskey ../lib/libedit ../lib/libexpat \
1.162     espie      48:        ../lib/libpcap ../lib/libsqlite3 ../lib/libutil ../lib/libusbhid \
                     49:        ../lib/libwrap \
1.141     deraadt    50:        ../lib/libz ../lib/libkeynote ../lib/libevent ../usr.bin/lex \
1.127     millert    51:        ../gnu/lib/libreadline ../gnu/usr.sbin/sendmail/libmilter \
1.163     espie      52:        ../sys/arch/${MACHINE} ../usr.sbin/httpd
1.123     espie      53:
1.154     drahn      54: .if ${COMPILER_VERSION:L} == "gcc3"
1.163     espie      55: RDIRS+= ../gnu/usr.bin/gcc ../gnu/lib/libobjc
                     56: PRDIRS+= ../gnu/lib/libstdc++
1.154     drahn      57: .elif ${COMPILER_VERSION:L} == "gcc4"
1.163     espie      58: RDIRS+= ../gnu/usr.bin/cc/libobjc
1.154     drahn      59: PRDIRS+= ../gnu/lib/libstdc++-v3
                     60: RDIRS+= ../gnu/usr.bin/cc/include
1.123     espie      61: .else
1.163     espie      62: RDIRS+= ../gnu/egcs/libio ../gnu/egcs/libstdc++ \
1.155     espie      63:        ../gnu/lib/libobjc ../gnu/egcs/gcc
1.123     espie      64: .endif
1.61      niklas     65:
1.163     espie      66: # prereq implies includes
                     67: RDIRS += ${PRDIRS}
                     68:
1.1       deraadt    69: NOOBJ= noobj
                     70:
                     71: # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
                     72: SYS_INCLUDE?=  copies
1.94      hin        73: .if ${KERBEROS5:L} == "yes"
1.119     mho        74: RDIRS+= ../lib/libkrb5 ../lib/libgssapi ../lib/libkadm5srv
1.9       tholo      75: .endif
1.61      niklas     76:
1.163     espie      77: RUN_MAKE = if test -f Makefile.bsd-wrapper; then ${MAKE} -f Makefile.bsd-wrapper $@; else ${MAKE} $@; fi
                     78:
1.61      niklas     79: prereq:
1.91      espie      80:        @for i in ${PRDIRS}; do \
1.62      niklas     81:                echo preparing in ${.CURDIR}/$$i; \
1.163     espie      82:                cd ${.CURDIR}/$$i && ${RUN_MAKE}; \
1.61      niklas     83:        done
1.1       deraadt    84:
1.6       deraadt    85: includes:
1.1       deraadt    86:        @echo installing ${FILES}
1.91      espie      87:        @for i in ${FILES}; do \
1.1       deraadt    88:                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
1.40      millert    89:                    ${INSTALL} ${INSTALL_COPY} -m 444 $$i ${DESTDIR}/usr/include/$$i; \
1.1       deraadt    90:        done
                     91:        @echo installing ${DIRS}
1.91      espie      92:        @for i in ${DIRS}; do \
1.32      downsj     93:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt    94:                        ${DESTDIR}/usr/include/$$i; \
1.91      espie      95:                cd ${.CURDIR}/$$i && for j in *.[ih]; do \
1.1       deraadt    96:                        cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
1.40      millert    97:                        ${INSTALL} ${INSTALL_COPY} -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
1.91      espie      98:                done; \
1.1       deraadt    99:        done
1.118     markus    100:        @rm -rf ${DESTDIR}/usr/include/openssl ${DESTDIR}/usr/include/ssl \
1.153     miod      101:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/ssl \
                    102:                ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_CPU}-openbsd/openssl
1.118     markus    103:        @mkdir ${DESTDIR}/usr/include/openssl
                    104:        @ln -sf openssl ${DESTDIR}/usr/include/ssl
1.1       deraadt   105:        @echo installing ${LFILES}
1.91      espie     106:        @for i in ${LFILES}; do \
                    107:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   108:                ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
                    109:        done
                    110:        @echo installing ${MFILES}
1.91      espie     111:        @for i in ${MFILES}; do \
                    112:                rm -f ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   113:                ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
1.2       deraadt   114:        done
1.1       deraadt   115:        chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include
1.136     deraadt   116:        find ${DESTDIR}/usr/include -type f -print0 | \
                    117:                xargs -0r chmod a=r
                    118:        find ${DESTDIR}/usr/include -type d -print0 | \
                    119:                xargs -0r chmod u=rwx,go=rx
1.91      espie     120:        @for i in ${RDIRS}; do \
1.7       deraadt   121:                echo installing in ${.CURDIR}/$$i; \
1.163     espie     122:                cd ${.CURDIR}/$$i && ${RUN_MAKE}; \
1.7       deraadt   123:        done
1.1       deraadt   124:
                    125: copies:
                    126:        @echo copies: ${LDIRS}
1.91      espie     127:        @for i in ${LDIRS}; do \
                    128:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.32      downsj    129:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.1       deraadt   130:                        ${DESTDIR}/usr/include/$$i ; \
                    131:        done
                    132:        cd ../sys; \
                    133:        pax -rw -pa -L \
1.101     mickey    134:            `find ${LDIRS} -follow -type f -name '*.h' \
1.168   ! deraadt   135:            '!' -path 'dev/microcode/*' -print` ${DESTDIR}/usr/include
1.153     miod      136:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.32      downsj    137:        ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.65      espie     138:                ${DESTDIR}/usr/include/${MACHINE}
1.111     itojun    139:        pax -rw -pa -s "|\.\./sys/arch/${MACHINE}/include||" \
                    140:            ../sys/arch/${MACHINE}/include/*.h \
                    141:            ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      142:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    143:            -d ../sys/arch/${MACHINE_CPU}/include; then \
1.32      downsj    144:                ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
1.153     miod      145:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
                    146:                pax -rw -pa -s "|\.\./sys/arch/${MACHINE_CPU}/include||" \
                    147:                    ../sys/arch/${MACHINE_CPU}/include/*.h \
                    148:                    ${DESTDIR}/usr/include/${MACHINE_CPU}; \
1.1       deraadt   149:        fi
1.65      espie     150:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine; \
1.1       deraadt   151:
                    152: symlinks:
                    153:        @echo symlinks: ${LDIRS}
                    154:        @for i in ${LDIRS}; do \
1.91      espie     155:                rm -rf ${DESTDIR}/usr/include/$$i && \
1.1       deraadt   156:                ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                    157:        done
1.153     miod      158:        cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine
1.65      espie     159:        ln -s /sys/arch/${MACHINE}/include ${DESTDIR}/usr/include/${MACHINE}
1.153     miod      160:        if test ${MACHINE} != ${MACHINE_CPU} -a \
                    161:            -d ../sys/arch/${MACHINE_CPU}/include ; then \
                    162:                ln -s /sys/arch/${MACHINE_CPU}/include \
                    163:                    ${DESTDIR}/usr/include/${MACHINE_CPU} ; \
1.1       deraadt   164:        fi
1.91      espie     165:        ln -sf ${MACHINE} ${DESTDIR}/usr/include/machine
1.1       deraadt   166:
1.6       deraadt   167: includes: ${SYS_INCLUDE}
                    168:
1.91      espie     169: .PHONY: prereq includes copies symlink
1.1       deraadt   170: .include <bsd.prog.mk>