ソースを参照

align wrapper makefiles with existing ones

Julius Pfrommer 10 年 前
コミット
50f02a07fd
共有2 個のファイルを変更した4 個の追加4 個の削除を含む
  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;