move the -lmarkdown to the END of the commandline where I link the flags exerciser program, because otherwise it doesn't get properly included in the link on one of my mips linux boxes?

This commit is contained in:
david parsons
2022-06-18 02:00:54 -07:00
parent 066d0ed47c
commit f4b7dd8b64
+1 -1
View File
@@ -12,7 +12,7 @@ programs: $(THINGS)
flags: flags.c
$(BUILD) -I$(TOPDIR) -c flags.c
$(LINK) -L$(TOPDIR) -lmarkdown -o flags flags.o
$(LINK) -L$(TOPDIR) -o flags flags.o -lmarkdown
run:
@for x in $(THINGS); do @LD_LIBRARY_PATH@=$(TOPDIR) ./$$x || exit 1; done