1# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 2# $FreeBSD$ 3 4.include <bsd.init.mk> 5 6.SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .ln .s .S .asm 7 8# XXX The use of COPTS in modern makefiles is discouraged. 9.if defined(COPTS) 10CFLAGS+=${COPTS} 11.endif 12 13.if ${MK_ASSERT_DEBUG} == "no" 14CFLAGS+= -DNDEBUG 15NO_WERROR= 16.endif 17 18.if defined(DEBUG_FLAGS) 19CFLAGS+=${DEBUG_FLAGS} 20CXXFLAGS+=${DEBUG_FLAGS} 21 22.if ${MK_CTF} != "no" && ${DEBUG_FLAGS:M-g} != "" 23CTFFLAGS+= -g 24.endif 25.endif 26 27.if defined(CRUNCH_CFLAGS) 28CFLAGS+=${CRUNCH_CFLAGS} 29.endif 30 31.if !defined(DEBUG_FLAGS) 32STRIP?= -s 33.endif 34 35.if defined(NO_SHARED) && (${NO_SHARED} != "no" && ${NO_SHARED} != "NO") 36LDFLAGS+= -static 37.endif 38 39.if defined(PROG_CXX) 40PROG= ${PROG_CXX} 41.endif 42 43.if defined(PROG) 44.if defined(SRCS) 45 46OBJS+= ${SRCS:N*.h:R:S/$/.o/g} 47 48.if target(beforelinking) 49${PROG}: ${OBJS} beforelinking 50.else 51${PROG}: ${OBJS} 52.endif 53.if defined(PROG_CXX) 54 ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} 55.else 56 ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} 57.endif 58.if ${MK_CTF} != "no" 59 ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS} 60.endif 61 62.else # !defined(SRCS) 63 64.if !target(${PROG}) 65.if defined(PROG_CXX) 66SRCS= ${PROG}.cc 67.else 68SRCS= ${PROG}.c 69.endif 70 71# Always make an intermediate object file because: 72# - it saves time rebuilding when only the library has changed 73# - the name of the object gets put into the executable symbol table instead of 74# the name of a variable temporary object. 75# - it's useful to keep objects around for crunching. 76OBJS= ${PROG}.o 77 78.if target(beforelinking) 79${PROG}: ${OBJS} beforelinking 80.else 81${PROG}: ${OBJS} 82.endif 83.if defined(PROG_CXX) 84 ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} 85.else 86 ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} 87.endif 88.if ${MK_CTF} != "no" 89 ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS} 90.endif 91.endif 92 93.endif 94 95.if ${MK_MAN} != "no" && !defined(MAN) && \ 96 !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \ 97 !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \ 98 !defined(MAN7) && !defined(MAN8) && !defined(MAN9) && \ 99 !defined(MAN1aout) 100MAN= ${PROG}.1 101MAN1= ${MAN} 102.endif 103.endif 104 105.if defined(_SKIP_BUILD) 106all: 107.else 108all: objwarn ${PROG} ${SCRIPTS} 109.if ${MK_MAN} != "no" 110all: _manpages 111.endif 112.endif 113 114.if defined(PROG) 115CLEANFILES+= ${PROG} 116.endif 117 118.if defined(OBJS) 119CLEANFILES+= ${OBJS} 120.endif 121 122.include <bsd.libnames.mk> 123 124.if defined(PROG) 125_EXTRADEPEND: 126.if defined(LDFLAGS) && !empty(LDFLAGS:M-nostdlib) 127.if defined(DPADD) && !empty(DPADD) 128 echo ${PROG}: ${DPADD} >> ${DEPENDFILE} 129.endif 130.else 131 echo ${PROG}: ${LIBC} ${DPADD} >> ${DEPENDFILE} 132.if defined(PROG_CXX) 133 echo ${PROG}: ${LIBSTDCPLUSPLUS} >> ${DEPENDFILE} 134.endif 135.endif 136.endif 137 138.if !target(install) 139 140.if defined(PRECIOUSPROG) 141.if !defined(NO_FSCHG) 142INSTALLFLAGS+= -fschg 143.endif 144INSTALLFLAGS+= -S 145.endif 146 147_INSTALLFLAGS:= ${INSTALLFLAGS} 148.for ie in ${INSTALLFLAGS_EDIT} 149_INSTALLFLAGS:= ${_INSTALLFLAGS${ie}} 150.endfor 151 152.if !target(realinstall) && !defined(INTERNALPROG) 153realinstall: _proginstall 154.ORDER: beforeinstall _proginstall 155_proginstall: 156.if defined(PROG) 157.if defined(PROGNAME) 158 ${INSTALL} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 159 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}/${PROGNAME} 160.else 161 ${INSTALL} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 162 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR} 163.endif 164.endif 165.endif # !target(realinstall) 166 167.if defined(SCRIPTS) && !empty(SCRIPTS) 168realinstall: _scriptsinstall 169.ORDER: beforeinstall _scriptsinstall 170 171SCRIPTSDIR?= ${BINDIR} 172SCRIPTSOWN?= ${BINOWN} 173SCRIPTSGRP?= ${BINGRP} 174SCRIPTSMODE?= ${BINMODE} 175 176.for script in ${SCRIPTS} 177.if defined(SCRIPTSNAME) 178SCRIPTSNAME_${script:T}?= ${SCRIPTSNAME} 179.else 180SCRIPTSNAME_${script:T}?= ${script:T:R} 181.endif 182SCRIPTSDIR_${script:T}?= ${SCRIPTSDIR} 183SCRIPTSOWN_${script:T}?= ${SCRIPTSOWN} 184SCRIPTSGRP_${script:T}?= ${SCRIPTSGRP} 185SCRIPTSMODE_${script:T}?= ${SCRIPTSMODE} 186_scriptsinstall: _SCRIPTSINS_${script:T} 187_SCRIPTSINS_${script:T}: ${script} 188 ${INSTALL} -o ${SCRIPTSOWN_${.ALLSRC:T}} \ 189 -g ${SCRIPTSGRP_${.ALLSRC:T}} -m ${SCRIPTSMODE_${.ALLSRC:T}} \ 190 ${.ALLSRC} \ 191 ${DESTDIR}${SCRIPTSDIR_${.ALLSRC:T}}/${SCRIPTSNAME_${.ALLSRC:T}} 192.endfor 193.endif 194 195NLSNAME?= ${PROG} 196.include <bsd.nls.mk> 197 198.include <bsd.files.mk> 199.include <bsd.incs.mk> 200.include <bsd.links.mk> 201 202.if ${MK_MAN} != "no" 203realinstall: _maninstall 204.ORDER: beforeinstall _maninstall 205.endif 206 207.endif 208 209.if !target(lint) 210lint: ${SRCS:M*.c} 211.if defined(PROG) 212 ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} 213.endif 214.endif 215 216.if ${MK_MAN} != "no" 217.include <bsd.man.mk> 218.endif 219 220.include <bsd.dep.mk> 221 222.if defined(PROG) && !exists(${.OBJDIR}/${DEPENDFILE}) 223${OBJS}: ${SRCS:M*.h} 224.endif 225 226.include <bsd.obj.mk> 227 228.include <bsd.sys.mk> 229 230.if defined(PORTNAME) 231.include <bsd.pkg.mk> 232.endif 233 234.if ${MK_STAGING} != "no" 235.if defined(_SKIP_BUILD) 236stage_files stage_as: 237.else 238# normally only libs and includes are staged 239.if ${MK_STAGING_PROG:Uno} != "no" 240STAGE_SETS+= prog 241STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR} 242.if !empty(PROG) 243all: stage_files 244stage_files.prog: ${PROG} 245.endif 246.if !empty(SYMLINKS) 247all: stage_symlinks 248stage_symlinks.prog: ${SYMLINKS} 249.endif 250 251.endif 252.include <meta.stage.mk> 253.endif 254.endif 255