From 949944e3300d61e20abea60863efb889694108a3 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 12:49:53 -0400 Subject: [PATCH] updated makefile to update nuget packages and build SteamAuth --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index d4b710e..0629739 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,4 @@ all: Program.cs - mcs -out:build/steamguard Program.cs + nuget restore SteamAuth/SteamAuth/SteamAuth.sln + mcs -target:library -out:build/libSteamAuth.so -r:SteamAuth/SteamAuth/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll SteamAuth/SteamAuth/APIEndpoints.cs SteamAuth/SteamAuth/AuthenticatorLinker.cs SteamAuth/SteamAuth/Confirmation.cs SteamAuth/SteamAuth/SessionData.cs SteamAuth/SteamAuth/SteamGuardAccount.cs SteamAuth/SteamAuth/SteamWeb.cs SteamAuth/SteamAuth/TimeAligner.cs SteamAuth/SteamAuth/UserLogin.cs SteamAuth/SteamAuth/Util.cs SteamAuth/SteamAuth/Properties/AssemblyInfo.cs + mcs -out:build/steamguard -r:build/libSteamAuth.so Program.cs