aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index be4cf0a..71b1824 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,8 @@
-all: $(patsubst example/%.c, out/%, $(wildcard example/*.c))
-all: $(patsubst example/%.c, run/%, $(wildcard example/*.c))
+libbt.so: bt.c
+ $(CC) -o $@ $^ -shared -fPIC -static-libgcc -ldl $(CFLAGS)
+
+run: $(patsubst example/%.c, out/%, $(wildcard example/*.c))
+run: $(patsubst example/%.c, run/%, $(wildcard example/*.c))
CFLAGS := -Wall -Wextra -g
CFLAGS_recurse1 := -Wno-infinite-recursion
@@ -12,9 +15,6 @@ out/%: example/%.c libbt.so
@mkdir -p out
$(CC) -o $@ $< -rdynamic $(CFLAGS) $(CFLAGS_$*)
-libbt.so: bt.c
- $(CC) -o $@ $^ -shared -fPIC -static-libgcc -ldl $(CFLAGS)
-
clean:
$(RM) -r out
$(RM) libbt.so