Parcourir la source

align wrapper makefiles with existing ones

Julius Pfrommer il y a 11 ans
Parent
commit
50f02a07fd
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 2 2
      wrappers/lua/Makefile.am
  2. 2 2
      wrappers/python/Makefile.am

+ 2 - 2
wrappers/lua/Makefile.am

@@ -16,5 +16,5 @@ open62541.so: networklayer.so open62541_wrap_lua.o
 
 all: open62541.lua open62541.so
 
-clean:
-	rm networklayer.so open62541.lua open62541.so open62541_wrap_lua.c open62541_wrap_lua.o
+clean-local:
+	rm -rf networklayer.so open62541.lua open62541.so open62541_wrap_lua.c open62541_wrap_lua.o || true;

+ 2 - 2
wrappers/python/Makefile.am

@@ -16,5 +16,5 @@ _open62541.so: networklayer.so open62541_wrap_python.o
 
 all: open62541.py _open62541.so
 
-clean:
-	rm networklayer.so open62541.py open62541.pyc _open62541.so open62541_wrap_python.c open62541_wrap_python.o
+clean-local:
+	rm -rf networklayer.so open62541.py open62541.pyc _open62541.so open62541_wrap_python.c open62541_wrap_python.o || true;