diff options
author | Uros Majstorovic <majstor@majstor.org> | 2024-04-23 18:07:21 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2024-04-23 18:07:21 +0200 |
commit | 503ac614ea91b4fdd9d5f6f467a2efcad900a7e1 (patch) | |
tree | 43db3f29292cbce58ab32667f722e3eed316ca7f /ecp/util/Makefile | |
parent | 40f4f88f04e834a9b9849dd6bcda78c1a1893506 (diff) |
added string key utilities
Diffstat (limited to 'ecp/util/Makefile')
-rw-r--r-- | ecp/util/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ecp/util/Makefile b/ecp/util/Makefile index e65a757..5db7686 100644 --- a/ecp/util/Makefile +++ b/ecp/util/Makefile @@ -8,14 +8,14 @@ dep=../build-posix/*.a ./libecputil.a %.o: %.c %.h $(CC) $(CFLAGS) -c $< -all: libecputil.a mknode +all: libecputil.a keygen libecputil.a: $(obj) $(AR) rcs libecputil.a $(obj) -mknode: mknode.o libecputil.a +keygen: keygen.o libecputil.a $(CC) -o $@ $< $(dep) $(LDFLAGS) clean: rm -f *.o *.a - rm -f mknode + rm -f keygen |