Add make install target

This commit is contained in:
Miek Gieben 2012-01-23 11:33:22 +01:00
parent 6e6b67afd5
commit d1d9f157df
1 changed files with 3 additions and 0 deletions

View File

@ -10,5 +10,8 @@ funkensturm \
all:
for i in $(EXAMPLES); do gomake -C $$i; done
install: all
for i in $(EXAMPLES); do gomake -C $$i install; done
clean:
for i in $(EXAMPLES); do gomake -C $$i clean; done