aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNeo <321592+Neo-Desktop@users.noreply.github.com>2023-05-23 20:06:34 -0700
committerNeo <321592+Neo-Desktop@users.noreply.github.com>2023-05-23 20:06:34 -0700
commit92938eb908aa10289b164fc5a43dcdaea60b1a92 (patch)
tree26745d07814bd9a483c782fb624732c98f3e0485 /Makefile
parenta40632a7fe3270f231100fe12fac181ce2c5db54 (diff)
downloadWindowsXPKg-92938eb908aa10289b164fc5a43dcdaea60b1a92.tar
WindowsXPKg-92938eb908aa10289b164fc5a43dcdaea60b1a92.tar.gz
WindowsXPKg-92938eb908aa10289b164fc5a43dcdaea60b1a92.tar.bz2
WindowsXPKg-92938eb908aa10289b164fc5a43dcdaea60b1a92.zip
change datatypes to platform agnostic versions, add makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7f6b7e2
--- /dev/null
+++ b/Makefile
@@ -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 \ No newline at end of file