source: src/router/nas/Makefile @ 7389

Last change on this file since 7389 was 7389, checked in by eko, 6 years ago

install fix

File size: 312 bytes
Line 
1include $(TOP)/.config
2
3all:
4ifeq ($(CONFIG_MSSID),y)
5        if test -e "src/Makefile"; then make -C src; fi
6        @true
7endif
8
9clean:
10        if test -e "src/Makefile"; then make -C src clean; fi
11        @true
12
13install:
14        if test -e "src/Makefile"; then make -C src install; else install -D nas $(INSTALLDIR)/nas/usr/sbin/nas; fi
15        @true
Note: See TracBrowser for help on using the repository browser.