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
306 B
17 lines
306 B
20 years ago
|
|
||
|
SESMANOBJ = sesman.o ../common/os_calls.o
|
||
|
|
||
|
CFLAGS = -Wall -O2 -I../common
|
||
|
LDFLAGS = -L /usr/gnu/lib
|
||
|
LIBS = -lpam_userpass -lcrypto -lpthread
|
||
|
PAMLIB = /lib/libpam.so.0
|
||
|
CC = gcc
|
||
|
|
||
|
all: sesman
|
||
|
|
||
|
sesman: $(SESMANOBJ)
|
||
|
$(CC) $(LDFLAGS) -o sesman $(PAMLIB) $(SESMANOBJ) $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(SESMANOBJ) sesman
|