mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
22 lines
494 B
Makefile
22 lines
494 B
Makefile
#***********************************************************************
|
|
#
|
|
# Copyright (c) 2013 Broadcom Corporation
|
|
# All Rights Reserved
|
|
#
|
|
#***********************************************************************/
|
|
|
|
#
|
|
# THIS MAKEFILE IS NOT CALLED DURING A NORMAL BUILD!
|
|
# this makefile is a convinience which allows you to run make from the
|
|
# userspace/private directory.
|
|
|
|
.PHONY: all
|
|
|
|
all :
|
|
$(MAKE) -C .. private-libs private-apps
|
|
|
|
clean:
|
|
$(MAKE) -C libs clean
|
|
$(MAKE) -C apps clean
|
|
|
|
|