dcfcc0f59c
Makefile-bin: only install target, for binary distribution Makefile-distrib: two targets, binary-distrib (builds a binary distribution based on the current configuration) and source-distrib (builds a source distribution)
12 lines
259 B
Text
12 lines
259 B
Text
include config
|
|
|
|
.PHONY: all install
|
|
|
|
all: install
|
|
|
|
install:
|
|
$(INSTALL) -d $(INSTALL_BINDIR)
|
|
$(INSTALL) bin/$(COMPILER).$(TARGET) $(INSTALL_BINDIR)/$(COMPILER)
|
|
$(INSTALL) bin/$(SIMULATOR).$(TARGET) $(INSTALL_BINDIR)/$(SIMULATOR)
|
|
(cd lib; $(MAKE) install)
|
|
|