ecrypt3/Makefile

11 lines
155 B
Makefile
Raw Permalink Normal View History

2023-06-01 10:53:25 -04:00
include config.mk
all:
$(CC) src/ecrypt.c $(CFLAGS) $(LDFLAGS) -lecrypt -o src/ecrypt
install:
install src/ecrypt $(PREFIX)/bin
clean:
rm src/ecrypt