This file contains hidden or 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
| # | |
| # Ettercap NG Makefile for MinGW / cl / clang-cl. | |
| # by G. Vanem <[email protected]> 2011 - 2018. | |
| # | |
| THIS_FILE = Makefile.Windows | |
| # | |
| # Comment this away to NOT rebuild too many things when $(THIS_FILE) changes. | |
| # | |
| MDEPEND = $(THIS_FILE) |
This file contains hidden or 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
| # | |
| # GNU-makefile for Welle-IO (MSVC / clang-cl, 32-bit) | |
| # | |
| # By G. Vanem <[email protected]> 2017. | |
| # | |
| THIS_FILE := Makefile.MSVC | |
| DATE := $(shell date +%d-%B-%Y) | |
| # | |
| # What to build: |
This file contains hidden or 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
| /* | |
| * Winpcap stuff for Win32 only: | |
| * | |
| * 1) Simple trace function used by WINDUMP_TRACE() macro in netdissect.h. | |
| * 2) Colourised 'ndo_printer'. | |
| * 3) Low-level NDIS/Packet32 stuff that doesn't fit anywhere else. | |
| * | |
| * Written by G. Vanem <[email protected]> 2014. | |
| */ |
This file contains hidden or 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
| #!/usr/local/bin/python | |
| #*************************************************************************** | |
| # _ _ ____ _ | |
| # Project ___| | | | _ \| | | |
| # / __| | | | |_) | | | |
| # | (__| |_| | _ <| |___ | |
| # \___|\___/|_| \_\_____| | |
| # | |
| # Copyright (C) 1998 - 2014, Daniel Stenberg, <[email protected]>, et al. | |
| # |
This file contains hidden or 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
| # | |
| # A Gnu-makefile to generate a C-program ($(PROGRAM).c) with all | |
| # current 'CURLOPT_x' and 'CURLE_x' values. | |
| # | |
| # NB! must be invoked from libcurl's './lib' directory. | |
| # | |
| # By G. Vanem <[email protected]> 2014 - 2018. | |
| # | |
| # The basename of what this makefile generates; | |
| # A 'curl_opt_err.c' and a 'curl_opt_err.exe' (on Windows). |
This file contains hidden or 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
| /* | |
| * MSVC cl internal error test-case. | |
| * | |
| * An 'cl' optimiser bug that triggers this message while compiling a GnuRadio volk/lib .c-file: | |
| * | |
| * msvc-sse2-crash.c(82) : fatal error C1001: An internal error has occurred in the compiler. | |
| * (compiler file 'f:\dd\vctools\compiler\utc\src\p2\main.c', line 260) | |
| * To work around this problem, try simplifying or changing the program near the locations listed above. | |
| * Please choose the Technical Support command on the Visual C++ | |
| * Help menu, or open the Technical Support help file for more information |
This file contains hidden or 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
| __all__ = [ 'printer', 'trace', 'color_print', 'textcolor' ] | |
| # | |
| # A simple module for printing with colours to the Windows console. | |
| # Currently used only by the syslog-drop.py script. | |
| # | |
| # By G. Vanem <[email protected]> 2012. | |
| # | |
| import os, sys, inspect |
This file contains hidden or 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
| # | |
| # Gnu Makefile for PortAudio (MSVC + clang-cl). | |
| # | |
| # By G. Vanem <[email protected]> 2014 - 2022. | |
| # | |
| THIS_FILE = Makefile.Windows | |
| TODAY = $(shell date +%d-%B-%Y) | |
| comma := , | |
| # |
This file contains hidden or 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
| # | |
| # GNU Makefile for the Vcpkg Package Manager (MSVC / clang-cl / MinGW). | |
| # | |
| # By <[email protected]> 2018 - 2022. | |
| # | |
| # Instructions: | |
| # 1) Clone 'vcpkg' by: | |
| # git clone https://github.com/Microsoft/vcpkg.git <SOME_DIR> | |
| # | |
| # 2) Clone 'vcpkg-tool' by: |
This file contains hidden or 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
| # | |
| # GNU Make to generate GNU Make (gnumake.exe) using | |
| # either MinGW gcc, MinGW64-TDM gcc, clang-CL or MSVC cl. | |
| # | |
| # By G. Vanem <[email protected]> 2013. | |
| # | |
| VERSION := $(shell grep AC_INIT ../configure.ac | cut -d']' -f2 | sed -e 's/,\[//g') | |
| DATE := $(shell date +%d-%B-%Y) |