From c1cc1c32cf9c9ca5ceb8b3181947406ff376f2c2 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sat, 21 Sep 2024 14:49:59 +0200 Subject: [PATCH] Add make target for standalone `ident` Signed-off-by: Steffen Jaeckel --- .gitignore | 1 + makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index eb930d7..c0bbaba 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ mtest stest rsatest timing +ident *.exe diff --git a/makefile b/makefile index ffcd8bf..a01f11f 100644 --- a/makefile +++ b/makefile @@ -86,6 +86,9 @@ testme: test mtest timing: $(LIBNAME) demo/timing.o $(CC) $(CFLAGS) demo/timing.o $(LIBNAME) $(PROF) -o timing +ident: $(LIBNAME) + $(CC) $(CFLAGS) -DSTANDALONE src/misc/fp_ident.c $(LIBNAME) $(PROF) -o ident + profiled: CC="$(CC)" CROSS_COMPILE="${CROSS_COMPILE} CFLAGS="${CFLAGS} -fprofile-generate" MAKE=${MAKE} ${MAKE} timing ./test