commit 98c77b6a05951dd81969b25346c666beb5fe91f0 parent 7a01bc0cf793e7ef441160353b6c5e421541693a Author: randymcmillan <randy.lee.mcmillan@gmail.com> Date: Wed, 6 Jul 2022 11:19:23 -0400 Makefile: clean up invisibles Diffstat:
M | Makefile | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile @@ -10,16 +10,16 @@ all: nostril @$(CC) $(CFLAGS) -c $< -o $@ nostril: $(HEADERS) $(OBJS) - $(CC) $(CFLAGS) $(OBJS) -lsecp256k1 -o $@ + $(CC) $(CFLAGS) $(OBJS) -lsecp256k1 -o $@ install: nostril mkdir -p $(PREFIX)/bin cp nostril $(PREFIX)/bin -config.h: configurator - ./configurator > $@ +config.h: configurator + ./configurator > $@ -configurator: configurator.c +configurator: configurator.c $(CC) $< -o $@ clean: