1 | # DebWrt - Debian on Embedded devices |
---|
2 | # |
---|
3 | # Copyright (C) 2010 Johan van Zoomeren <amain@debwrt.net> |
---|
4 | # |
---|
5 | # This program is free software: you can redistribute it and/or modify |
---|
6 | # it under the terms of the GNU General Public License as published by |
---|
7 | # the Free Software Foundation, either version 3 of the License, or |
---|
8 | # (at your option) any later version. |
---|
9 | # |
---|
10 | # This program is distributed in the hope that it will be useful, |
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | # GNU General Public License for more details. |
---|
14 | # |
---|
15 | # You should have received a copy of the GNU General Public License |
---|
16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | |
---|
18 | # Start with an empty package list |
---|
19 | DEBWRT_PKGLST:= |
---|
20 | # that list can be extended in the next include statements |
---|
21 | include $(TOPDIR)/debian/package/libnl/build.mk |
---|
22 | include $(TOPDIR)/debian/package/iw/build.mk |
---|
23 | # include $(TOPDIR)/debian/package/debwrt-kernel-headers/build.mk |
---|
24 | include $(TOPDIR)/debian/package/robocfg/build.mk |
---|
25 | include $(TOPDIR)/debian/package/nvram/build.mk |
---|
26 | include $(TOPDIR)/debian/package/hostapd/build.mk |
---|
27 | include $(TOPDIR)/debian/package/shellinabox/build.mk |
---|
28 | # include $(TOPDIR)/debian/package/libpar2/build.mk |
---|
29 | # include $(TOPDIR)/debian/package/nzbget/build.mk |
---|
30 | include $(TOPDIR)/debian/package/libnl-tiny/build.mk |
---|
31 | include $(TOPDIR)/debian/package/swconfig/build.mk |
---|
32 | |
---|
33 | debian/package/rootfs: $(DEBWRT_PKGLST) |
---|
34 | touch $@ |
---|
35 | |
---|
36 | debian/package/clean: |
---|
37 | rm -rf $(DEBIAN_BUILD_DIR)/usr/src/* |
---|
38 | rm -f $(TOPDIR)/debian/package/*/build |
---|
39 | rm -f $(TOPDIR)/debian/package/*/prepare |
---|
40 | rm -f $(TOPDIR)/debian/package/*/deliver |
---|