Index: trunk/Makefile =================================================================== --- trunk/Makefile (revision 193) +++ trunk/Makefile (revision 194) @@ -14,14 +14,17 @@ install: cd src && make install cd lib && make install + cd newlib && make install cd tutorial && make install linstall: cd src && make linstall cd lib && make linstall + cd newlib && make linstall cd tutorial && make linstall uninstall: cd src && make uninstall cd lib && make uninstall + cd newlib && make uninstall cd tutorial && make uninstall Index: trunk/newlib/Makefile.am =================================================================== --- trunk/newlib/Makefile.am (revision 193) +++ trunk/newlib/Makefile.am (nonexistent) @@ -1,16 +0,0 @@ -## $Id$ -## -## Top level 'newlib' automake file - -SUBDIRS=\ - 2_pin_thru-hole_packages \ - connectors \ - crystal \ - electro-optics \ - headers \ - keystone \ - msp430 \ - not_vetted_ingo \ - sockets \ - tests - Index: trunk/newlib/Makefile =================================================================== --- trunk/newlib/Makefile (nonexistent) +++ trunk/newlib/Makefile (revision 194) @@ -0,0 +1,30 @@ +# This Makefile is a plain old hand written one; all configuration settings +# are included from ../Makefile.conf which is scconfig generated + +all: + +install_: + $(MKDIR) $(DATADIR)/newlib + $(CPC) `pwd`/2_pin_thru-hole_packages $(DATADIR)/newlib/2_pin_thru-hole_packages + $(CPC) `pwd`/connectors $(DATADIR)/newlib/connectors + $(CPC) `pwd`/crystal $(DATADIR)/newlib/crystal + $(CPC) `pwd`/electro-optics $(DATADIR)/newlib/electro-optics + $(CPC) `pwd`/headers $(DATADIR)/newlib/headers + $(CPC) `pwd`/keystone $(DATADIR)/newlib/keystone + $(CPC) `pwd`/msp430 $(DATADIR)/newlib/msp430 + $(CPC) `pwd`/not_vetted_ingo $(DATADIR)/newlib/not_vetted_ingo + $(CPC) `pwd`/tests $(DATADIR)/newlib/tests + +install: + make install_ CPC="$(CP)" + +linstall: + make install_ CPC="$(LN)" + +uninstall: + $(RM) $(DATADIR)/newlib + +clean: + +include ../Makefile.conf +