commit 4db22ea6547cf324376dc9561e01b84e78825e4d from: Omar Polo date: Sat Oct 14 18:53:37 2023 UTC pass LDFLAGS before LIBS commit - 6e4ba8184dc05091184fa1007845e860dc7f1062 commit + 4db22ea6547cf324376dc9561e01b84e78825e4d blob - ad56b347e9fe9256520b3545e06f00125c8393c7 blob + 9999b5222aaaabc76983e0d708e20c5c3b2c36db --- Makefile +++ Makefile @@ -101,16 +101,16 @@ tags: # --internal build targets -- gmid: ${GMID_OBJS} - ${CC} ${GMID_OBJS} -o $@ ${LIBS} ${LDFLAGS} + ${CC} ${GMID_OBJS} -o $@ ${LDFLAGS} ${LIBS} gemexp: ${GEMEXP_OBJS} - ${CC} ${GEMEXP_OBJS} -o $@ ${LIBS} ${LDFLAGS} + ${CC} ${GEMEXP_OBJS} -o $@ ${LDFLAGS} ${LIBS} gg: ${GG_OBJS} - ${CC} ${GG_OBJS} -o $@ ${LIBS} ${LDFLAGS} + ${CC} ${GG_OBJS} -o $@ ${LDFLAGS} ${LIBS} titan: ${TITAN_OBJS} - ${CC} ${TITAN_OBJS} -o $@ ${LIBS} ${LDFLAGS} + ${CC} ${TITAN_OBJS} -o $@ ${LDFLAGS} ${LIBS} y.tab.c: parse.y ${YACC} -b y parse.y