#
# makefile.linux
# to build libguide; please look at the original Makefile from
# SUN for copyright!
#
all: clean
	$(MAKE) -f Makefile_static
	$(MAKE) -f Makefile_shared

install: clean
	$(MAKE) -f Makefile_static install
	$(MAKE) -f Makefile_shared install

clean:
	$(MAKE) -f Makefile_static clean
	$(MAKE) -f Makefile_shared clean


