You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
239 B
Plaintext

include config
.PHONY: all install
all: install
install:
$(INSTALL) -d $(INSTALL_BINDIR)
$(INSTALL) bin/$(COMPILER) $(INSTALL_BINDIR)/$(COMPILER)
$(INSTALL) bin/$(SIMULATOR) $(INSTALL_BINDIR)/$(SIMULATOR)
(cd lib; $(MAKE) install)