]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Use libgwion.a to build gwion
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 14 May 2019 17:48:48 +0000 (19:48 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 14 May 2019 17:48:48 +0000 (19:48 +0200)
Makefile

index c358350e722f164b9c1db282bef90e7b4e091692..701092592d28065ae1b17d32035c874fb2343e21 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -65,11 +65,12 @@ LDCFG="${LDFLAGS}"
 # hide this from gwion -v
 CFLAGS += -DGWION_BUILTIN
 
-LDFLAGS += ast/libgwion_ast.a util/libgwion_util.a
+GWLIBS = libgwion.a ast/libgwion_ast.a util/libgwion_util.a
+LDFLAGS += ${GWLIBS}
 
-all: options util/libgwion_util.a ast/libgwion_ast.a ${GW_OBJ} ${jit_obj}
+all: options ${GWLIBS} src/main.o
        $(info link ${PRG})
-       @${CC} ${GW_OBJ} -o ${PRG} ${LDFLAGS} ${LIBS}
+       @${CC} src/main.o -o ${PRG} ${LDFLAGS} ${LIBS}
 
 libgwion.a: ${gwlib_obj}
        ${AR} ${AR_OPT}