12 lines
211 B
Makefile
12 lines
211 B
Makefile
# Top level makefile, this just calls into src/Makefile where the real work is done. Changes should be made there.
|
|
|
|
default: all
|
|
|
|
.DEFAULT:
|
|
cd src && $(MAKE) $@
|
|
|
|
install:
|
|
cd src && $(MAKE) $@
|
|
|
|
.PHONY: install
|