1993-08-01 09:37:30 +04:00
|
|
|
# from: @(#)Makefile 6.2 (Berkeley) 2/2/91
|
1995-09-24 09:50:41 +03:00
|
|
|
# $Id: Makefile,v 1.7 1995/09/24 06:50:41 phil Exp $
|
1993-08-01 09:37:30 +04:00
|
|
|
|
1993-07-11 08:21:12 +04:00
|
|
|
PROG= cc1
|
1993-08-23 13:20:31 +04:00
|
|
|
|
|
|
|
SRCS= c-parse.c c-lang.c c-lex.c c-pragma.c c-decl.c \
|
|
|
|
c-typeck.c c-convert.c c-aux-info.c c-iterate.c
|
1993-09-24 03:13:04 +04:00
|
|
|
|
1995-09-24 09:50:41 +03:00
|
|
|
.if make(clean) || make(cleandir)
|
1993-08-23 13:20:31 +04:00
|
|
|
.include <../Makefile.cc1>
|
1995-09-24 09:50:41 +03:00
|
|
|
.elif ${MACHINE} == "pc532"
|
|
|
|
|
|
|
|
all:
|
|
|
|
@echo "The standard cc1 for the pc532 is not working."
|
|
|
|
@echo "Use the distribution /usr/libexec/cc1."
|
|
|
|
|
|
|
|
install:
|
|
|
|
@echo "The standard cc1 for the pc532 is not working."
|
|
|
|
@echo "Use the distribution /usr/libexec/cc1."
|
|
|
|
|
|
|
|
.else
|
|
|
|
.include <../Makefile.cc1>
|
|
|
|
.endif
|