summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a23ba33..37fcae0 100644
--- a/Makefile
+++ b/Makefile
@@ -23,16 +23,16 @@ $(OBJ_DESAGGREGARTP): Makefile util.h
$(OBJ_OFFSETS): Makefile
multicat: $(OBJ_MULTICAT)
- $(CC) $(LDLIBS) -o $@ $(OBJ_MULTICAT)
+ $(CC) -o $@ $(OBJ_MULTICAT) $(LDLIBS)
ingests: $(OBJ_INGESTS)
- $(CC) $(LDLIBS) -o $@ $(OBJ_INGESTS)
+ $(CC) -o $@ $(OBJ_INGESTS) $(LDLIBS)
aggregartp: $(OBJ_AGGREGARTP)
- $(CC) $(LDLIBS) -o $@ $(OBJ_AGGREGARTP)
+ $(CC) -o $@ $(OBJ_AGGREGARTP) $(LDLIBS)
desaggregartp: $(OBJ_DESAGGREGARTP)
- $(CC) $(LDLIBS) -o $@ $(OBJ_DESAGGREGARTP)
+ $(CC) -o $@ $(OBJ_DESAGGREGARTP) $(LDLIBS)
offsets: $(OBJ_OFFSETS)
$(CC) -o $@ $(OBJ_OFFSETS)