mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2025-12-04 01:05:14 +02:00
change datatypes to platform agnostic versions, add makefile
This commit is contained in:
15
Makefile
Normal file
15
Makefile
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user