aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7f6b7e2abb69c2fd454e0e711dd9ac1763a8907a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CPPFLAGS := $(INC_FLAGS) -Bstatic
LDFLAGS := -lssl -lcrypto -ldl -pthread

.SILENT: all xpkey srv2003key clean

all: xpkey srv2003key

xpkey:
	$(CXX) $(CPPFLAGS) main.cpp -o $@ $(LDFLAGS)

srv2003key:
	$(CXX) $(CPPFLAGS) Srv2003KGmain.cpp -o $@ $(LDFLAGS)

clean:
	rm -f xpkey srv2003key