Deleted Added
full compact
Makefile.powerpc (3698) Makefile.powerpc (3743)
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
3# $Id: Makefile.i386,v 1.45 1994/10/03 23:03:38 rgrimes Exp $
3# $Id: Makefile.i386,v 1.46 1994/10/18 19:45:46 wollman Exp $
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

--- 10 unchanged lines hidden (view full) ---

22#
23TOUCH?= touch -f -c
24LD?= /usr/bin/ld
25CC?= cc
26CPP?= cpp
27DBSYM?= /usr/sbin/dbsym
28.if defined(DEBUG)
29.if defined(NOSTRIP)
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

--- 10 unchanged lines hidden (view full) ---

22#
23TOUCH?= touch -f -c
24LD?= /usr/bin/ld
25CC?= cc
26CPP?= cpp
27DBSYM?= /usr/sbin/dbsym
28.if defined(DEBUG)
29.if defined(NOSTRIP)
30STRIP?= echo '(skipping) strip'
30STRIP= echo '(skipping) strip'
31.else
31.else
32STRIP?= cp $@ $@.sym; strip
32STRIP= cp $@ $@.sym; strip
33.endif
34.else
33.endif
34.else
35STRIP?= strip
35STRIP= strip
36.endif
37
38.if exists(./@/.)
39S= ./@
40.else
41S= ../..
42.endif
43I386= ${S}/i386

--- 169 unchanged lines hidden ---
36.endif
37
38.if exists(./@/.)
39S= ./@
40.else
41S= ../..
42.endif
43I386= ${S}/i386

--- 169 unchanged lines hidden ---