Skip to content
This repository was archived by the owner on Apr 12, 2026. It is now read-only.

Commit 8b75881

Browse files
committed
Merge pull request #301 from jdede/fix-uninstall
tools: Fix "make uninstall" for CoAP, some python files, and 6lowpan tests.
2 parents 1cf5858 + 7b2478a commit 8b75881

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

tools/tinyos/c/blip/lib6lowpan/tests/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ all: $(TARGETS)
1515

1616
install:
1717

18+
uninstall:
19+
1820
check:
1921
./run.sh
2022

tools/tinyos/c/coap/Makefile.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ dist: $(FILES) $(SUBDIRS)
105105
tar czf $(package).tar.gz $(DISTDIR)
106106

107107
install:
108-
@echo "No need to install COAP"
108+
@echo "No need to install CoAP"
109+
110+
uninstall:
111+
@echo "No need to uninstall CoAP"
109112

110113
TAGS:
111114
$(ETAGS) -o $@.new $(SOURCES)
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
tospy_PYTHON = __init__.py hexdump.py
2+
tospydir = $(pythondir)/tinyos/misc
3+
4+
tospy3_PYTHON = __init__.py hexdump.py
5+
tospy3dir = $(pythondir3)/tinyos/misc
26

3-
tospydir = $(pythondir3)/tinyos/misc
47

0 commit comments

Comments
 (0)