You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
313 B
17 lines
313 B
|
|
SESMANOBJ = sesman.o ../common/os_calls.o ../common/d3des.o
|
|
|
|
CFLAGS = -Wall -O2 -I../common
|
|
LDFLAGS = -L /usr/gnu/lib
|
|
LIBS = -lpam_userpass -lcrypto -lpthread -lpam
|
|
PAMLIB =
|
|
CC = gcc
|
|
|
|
all: sesman
|
|
|
|
sesman: $(SESMANOBJ)
|
|
$(CC) $(LDFLAGS) -o sesman $(PAMLIB) $(SESMANOBJ) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(SESMANOBJ) sesman
|