tRework mkfile - sick - sign and check files using ed25519
(HTM) git clone git://z3bra.org/sick
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit ba646b3bb0828dce3e6ae91020556a740489cfcd
(DIR) parent ab0b71c3a17687865d6fdd1e9faee41fde0f9f07
(HTM) Author: z3bra <willyatmailoodotorg>
Date: Mon, 16 May 2016 12:28:48 +0200
Rework mkfile
Diffstat:
M mkfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/mkfile b/mkfile
t@@ -2,14 +2,14 @@
ED25519_SRC = `{find ed25519/src -name '*.c'}
-SRC = sick.c base64.c ${ED25519_SRC}
+SRC = sick.c base64.c $ED25519_SRC
OBJ = ${SRC:%.c=%.o}
sick: $OBJ
- ${CC} $OBJ ${LDFLAGS} ${LIBS} -o sick
+ $LD -o $target $prereq $LDFLAGS $LIBS
%.o: %.c
- ${CC} ${CFLAGS} -c $stem.c -o $stem.o
+ $CC $CFLAGS -c $stem.c -o $stem.o
clean:V:
rm -f $OBJ sick