2022-02-11 16:36:42 -08:00
|
|
|
# Top level makefile, this just calls into src/Makefile where the real work is done. Changes should be made there.
|
2010-07-06 18:54:54 +02:00
|
|
|
|
2011-07-13 19:15:22 +02:00
|
|
|
default: all
|
2010-07-06 18:54:54 +02:00
|
|
|
|
2011-07-13 19:15:22 +02:00
|
|
|
.DEFAULT:
|
2010-07-06 18:54:54 +02:00
|
|
|
cd src && $(MAKE) $@
|
|
|
|
|
2012-05-04 11:54:06 -07:00
|
|
|
install:
|
|
|
|
cd src && $(MAKE) $@
|
|
|
|
|
|
|
|
.PHONY: install
|