Changeset 695
- Timestamp:
- Nov 21, 2015, 11:13:26 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r694 r695 35 35 include config/config.mk 36 36 37 ifeq ($(CONFIG_DEBWRT_FIRMWARE), n)37 ifeq ($(CONFIG_DEBWRT_FIRMWARE),y) 38 38 include openwrt/openwrt.mk 39 39 include openwrt/openwrt-deliver.mk 40 test1:41 echo "hoi"42 40 endif 43 41 … … 72 70 @echo "Note: wait a couple of minutes before rebooting your device. It takes time to write the firmware to the flash." 73 71 72 ifeq ($(CONFIG_DEBWRT_FIRMWARE),n) 74 73 clean: openwrt/clean debian/clean config/clean plugins/clean 75 74 @rm -f .config .config.old 75 else 76 clean: debian/clean config/clean plugins/clean 77 @rm -f .config .config.old 78 endif 76 79 77 80 .PHONY: clean -
trunk/debian/debian.mk
r694 r695 19 19 include $(TOPDIR)/debian/buildenv/debian.mk 20 20 include $(TOPDIR)/debian/package/debian.mk 21 DEBIAN_CLEAN+=debian/package/clean debian/buildenv/clean 21 22 endif 22 23 23 24 ifeq ($(CONFIG_ROOTFS_DEBIAN),y) 24 25 include $(TOPDIR)/debian/rootfs/debian.mk 26 DEBIAN_CLEAN+=debian/rootfs/clean 25 27 endif 26 28 27 29 debian/all: 28 30 29 debian/clean: debian/package/clean debian/buildenv/clean debian/rootfs/clean31 debian/clean: $(DEBIAN_CLEAN) 30 32 31 33 .PHONY: debian/all \
Note: See TracChangeset
for help on using the changeset viewer.