summaryrefslogtreecommitdiff
path: root/Makefile
blob: 85aac0d63e0a7d662be1ffdc376a6ea423ae7c2a (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS = -g -Wall -pedantic -pthread
LDFLAGS = -lssl
OBJ = util.o debug.o list.o gconfig.o radsecproxy.o

all: radsecproxy

radsecproxy: $(OBJ)
	$(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy
clean:
	rm -f $(OBJ) radsecproxy