EXPERIMENTAL Password Hashing
This commit is contained in:
15
utils/update_pass/Makefile
Normal file
15
utils/update_pass/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
CC=cc
|
||||
CFLAGS=-I/usr/local/include
|
||||
DEPS = update_pass.c
|
||||
|
||||
OBJ = update_pass.o
|
||||
%.o: %.c $(DEPS)
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
update_pass: $(OBJ)
|
||||
$(CC) -o update_pass -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3 -lssl -lcrypto
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
rm -f $(OBJ) update_pass
|
Reference in New Issue
Block a user