24 lines
488 B
Makefile
24 lines
488 B
Makefile
# XXX this is evil
|
|
|
|
TC_SRC_DIR=/ide/rossDec97/toolchain
|
|
|
|
includes lint obj regress tags:
|
|
|
|
# dependencies should be handled, but aren't for now.
|
|
depend:
|
|
|
|
all: MADE
|
|
MADE:
|
|
cd $(TC_SRC_DIR) ; configure
|
|
cd $(TC_SRC_DIR) ; make BISON="yacc"
|
|
touch MADE
|
|
clean cleandir distclean::
|
|
cd $(TC_SRC_DIR) ; make -k distclean
|
|
rm -f MADE
|
|
install:
|
|
NETBSDSRCDIR=/usr/src \
|
|
sh -e mk-toolchain-install-cmds \
|
|
| (cd $(TC_SRC_DIR) ; \
|
|
STRIP=$(TC_SRC_DIR)/binutils/strip.new \
|
|
sh -e -x)
|