-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since this tool is very specific to the Windows OS, there's no point generalizing the build directory structure for other systems. This change basically moves all build files up from the old `win` directory. I also changed the output target of the experimental `netuse` tool to direct output to `out/x64/Debug` instead of just `out`.
- Loading branch information
Showing
6 changed files
with
46 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
LIBS = kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib \ | ||
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib \ | ||
odbccp32.lib | ||
|
||
OUT = ..\out\x64\Debug | ||
SRC = ..\src | ||
SRCFromOut = ..\..\..\src | ||
|
||
all: $(OUT)\netuse.exe | ||
|
||
$(OUT)\netuse.exe: $(SRC)\netuse.cpp | ||
-mkdir 2>nul $(OUT) | ||
cd $(OUT) & cl -nologo /Zi $(SRCFromOut)\netuse.cpp | ||
|
||
clean clobber: | ||
-cd $(OUT) & del 2>nul netuse.* vc120.pdb | ||
|
||
fresh: clobber all |
This file was deleted.
Oops, something went wrong.