12 lines
151 B
Makefile
12 lines
151 B
Makefile
|
# Top level makefile, the real shit is at src/Makefile
|
||
|
|
||
|
default: all
|
||
|
|
||
|
.DEFAULT:
|
||
|
cd src && $(MAKE) $@
|
||
|
|
||
|
install:
|
||
|
cd src && $(MAKE) $@
|
||
|
|
||
|
.PHONY: install
|