diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2006-12-06 10:55:45 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2006-12-06 10:55:45 +0000 |
commit | 17582a4ad4e22d8a4c65739913c63acb5d091aee (patch) | |
tree | 279bf2aad80fb7f86aacefda30665d354a563e31 /packages/python/python-pyiw-0.3.2/Makefile | |
parent | 2aedfc4e34a370cbdec09d7a258d60cc4ad63ac3 (diff) | |
parent | 5b541ff766ed2a9ed77cd68ed558651a4fa5f5ae (diff) |
merge of '3fa76fd2a4646a878f0810156dec4b7da94c14f2'
and 'ee31c6e3fc63b93eae8552042728645a8206cf1c'
Diffstat (limited to 'packages/python/python-pyiw-0.3.2/Makefile')
-rw-r--r-- | packages/python/python-pyiw-0.3.2/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/python/python-pyiw-0.3.2/Makefile b/packages/python/python-pyiw-0.3.2/Makefile new file mode 100644 index 0000000000..2ea7baec08 --- /dev/null +++ b/packages/python/python-pyiw-0.3.2/Makefile @@ -0,0 +1,18 @@ +# Simple Makfile + +NAME = pyiw +LIBS += -liw + +#static: pyiw.c +# @echo "Statically Building/Linking $(NAME)" +# @$(CC) $(CFLAGS) -Istaticlibiw $(<) -shared -o $(NAME).so staticlibiw/libiw.a + +dynamic: pyiw.c + @echo "Dynamically Building/Linking $(NAME)" + @$(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) $(<) -shared -o $(NAME).so + +clean: + @rm -rf *.o + @rm -rf $(NAME).so + @rm -rf $(NAME).so.t* + |