diff options
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index 7173c99..e29af5d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -12,16 +12,12 @@ LDFLAGS ?= -pthread -static-libgcc .PHONY: all clean -all: $(OBJDIR)/print_status_on_exit.so $(OBJDIR)/chattymalloc.so +all: $(OBJDIR)/print_status_on_exit.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): mkdir $@ |
