diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index 43a9d87..4961c4e 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,8 +1,8 @@ CFLAGS += -I../inc/ -all: libalarm.so python +all: python -python: +python: libalarm.so make -C python %.so: %.o @@ -12,6 +12,7 @@ python: $(CC) -c -o $@ $< $(LDFLAGS) $(CFLAGS) clean: - rm libalarm.{s,}o + rm -f libalarm.{s,}o + make -C python clean .PHONY: python |