244d23f931
http://www.ludd.ltu.se/~ragge/pcc/ This is based on the original Portable C Compiler by S. C. Johnson, written in the late 70's. Even though much of the compiler has been rewritten, some of the basics still remain. The goal of pcc is to produce a small, simple, fast and understandable C99 compiler under a BSD licence.
33 lines
500 B
Makefile
33 lines
500 B
Makefile
# $Id: Makefile.in,v 1.1.1.1 2007/09/20 13:08:44 abs Exp $
|
|
#
|
|
# Makefile.in for top-level of pcc.
|
|
#
|
|
|
|
@SET_MAKE@
|
|
CC=@CC@
|
|
CFLAGS=@CFLAGS@
|
|
LDFLAGS=@LDFLAGS@
|
|
CPPFLAGS=@CPPFLAGS@
|
|
YACC=@YACC@
|
|
LEX=@LEX@
|
|
|
|
SUBDIR=cc
|
|
|
|
all: ${SUBDIR}
|
|
|
|
install:
|
|
cd cc && ${MAKE} install
|
|
|
|
clean:
|
|
cd cc && ${MAKE} clean
|
|
|
|
distclean:
|
|
cd cc && ${MAKE} distclean
|
|
/bin/rm -rf Makefile config.log stamp-h1 config.status \
|
|
configure.lineno config.h autom4te.cache
|
|
|
|
${SUBDIR}: nonexistant
|
|
cd $@ && $(MAKE) all $(MFLAGS)
|
|
|
|
nonexistant:
|