[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / arch / mvme68k / stand / bugcrt

Annotation of sys/arch/mvme68k/stand/bugcrt/Makefile, Revision 1.1

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.7 1997/04/22 16:05:38 gvf Exp $
        !             2: #
        !             3: # DO NOT OPTMIZE bugcrt (i.e. no "-O2")
        !             4: #
        !             5: S=${.CURDIR}/../../../..
        !             6: CFLAGS=-I${.CURDIR}/../../include -I${.CURDIR}/../libbug -I${S}/lib/libsa \
        !             7:        -fomit-frame-pointer
        !             8:
        !             9: OBJS=bugcrt.o
        !            10:
        !            11: CLEANFILES+=a.out
        !            12:
        !            13: all:   ${OBJS}
        !            14:
        !            15: bugcrt.o: bugcrt.c
        !            16:        ${COMPILE.c} -c $<
        !            17:        ${LD} -x -r ${.TARGET}
        !            18:        mv a.out ${.TARGET}
        !            19:
        !            20: install:
        !            21:
        !            22: lint tags:
        !            23:
        !            24: .include <bsd.prog.mk>

CVSweb