aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 6b7b704..7173c99 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -15,9 +15,11 @@ LDFLAGS ?= -pthread -static-libgcc
all: $(OBJDIR)/print_status_on_exit.so $(OBJDIR)/chattymalloc.so
$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c | $(OBJDIR)
+ @echo "Compiling $@...";
$(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $<
$(OBJDIR)/chattymalloc.so: chattymalloc.c | $(OBJDIR)
+ @echo "Compiling $@...";
$(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $<
$(OBJDIR):