diff options
author | Cara Salter <cara@devcara.com> | 2022-01-28 15:50:38 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-01-28 15:50:38 -0500 |
commit | 4585ec623286900898a09b1714b3b5de38be4fec (patch) | |
tree | cd08eef867164c3c998485063e2af1ec55c51c5a /Makefile | |
parent | aa80bc22117d385474c8593560368adf6b57f074 (diff) | |
download | cmud-4585ec623286900898a09b1714b3b5de38be4fec.tar.gz cmud-4585ec623286900898a09b1714b3b5de38be4fec.zip |
login: Add password authentication for registrations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,8 @@ CC=gcc CFLAGS=-I. -static -SRCS=src/main.c src/login.c src/server.c src/data.c +SRCS=src/main.c src/login.c src/server.c src/data.c src/util.c BIN=cmud +LFLAGS=-largon2 -lconfig %.o: %.c $(CC) -c -o $@ $< $(CFLAGS) |