mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2024-11-16 19:00:59 +02:00
15 lines
287 B
Makefile
15 lines
287 B
Makefile
|
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
|