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

all: radsecproxy

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