mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-18 23:41:30 +02:00
17 lines
314 B
Makefile
17 lines
314 B
Makefile
#
|
|
# THIS MAKEFILE IS NOT CALLED DURING A NORMAL BUILD!
|
|
# this makefile is a convinience which allows you to run make from the
|
|
# userspace/public directory.
|
|
|
|
.PHONY: all
|
|
|
|
all :
|
|
$(MAKE) -C .. public-include public-libs public-apps
|
|
|
|
clean:
|
|
$(MAKE) -C libs clean
|
|
$(MAKE) -C apps clean
|
|
$(MAKE) -C include clean
|
|
|
|
|
|
|