Makefile: add instructions for linking - gramscii - A simple editor for ASCII b… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 5157bd6a0b2dcda08143fd725e1c04dadc315bdc | |
parent a2720eb028c1ad2c43b529cf9633adb5b034be79 | |
Author: Anders Damsgaard <[email protected]> | |
Date: Wed, 14 Oct 2020 08:50:33 +0200 | |
Makefile: add instructions for linking | |
otherwise objects are not linked into gramscii binary | |
Diffstat: | |
M Makefile | 1 + | |
1 file changed, 1 insertion(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -19,6 +19,7 @@ options: | |
@echo "-+-+-+-+-+-+-+-+-+-+-" | |
gramscii: ${OBJ} | |
+ ${CC} ${LDFLAGS} -o gramscii ${OBJ} | |
${OBJ}: ${INC} | |