Initial import
This commit is contained in:
30
Makefile
Normal file
30
Makefile
Normal file
@@ -0,0 +1,30 @@
|
||||
CC = gcc
|
||||
CFLAGS = -O2 -s -D_GNU_SOURCE
|
||||
LDLIBS = -lcrypt
|
||||
PREFIX =
|
||||
BINDIR = $(PREFIX)/usr/sbin
|
||||
|
||||
all: sessmgr
|
||||
@echo "All done!"
|
||||
|
||||
sessmgr: sessmgr.o sha256.o
|
||||
$(CC) $(CFLAGS) $(LDLIBS) sessmgr.o sha256.o -o sessmgr
|
||||
|
||||
sessmgr.o: sessmgr.c
|
||||
$(CC) $(CFLAGS) -c sessmgr.c
|
||||
|
||||
sha256.o: sha256.c
|
||||
$(CC) $(CFLAGS) -c sha256.c
|
||||
|
||||
install:
|
||||
mkdir -p $(BINDIR)
|
||||
cp sessmgr $(BINDIR)
|
||||
@echo "All done!"
|
||||
|
||||
uninstall:
|
||||
rm -f $(BINDIR)/sessmgr
|
||||
@echo "All done!"
|
||||
|
||||
clean:
|
||||
rm -f sessmgr *.o
|
||||
@echo "All done!"
|
Reference in New Issue
Block a user