Makefile: clean up invisibles

This commit is contained in:
randymcmillan 2022-07-06 11:19:23 -04:00 committed by William Casarin
parent 7a01bc0cf7
commit 98c77b6a05
1 changed files with 4 additions and 4 deletions

View File

@ -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: