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

all: radsecproxy

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