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
| # | |
| # MG-Lua for MSVC / clang-cl | |
| # | |
| THIS_FILE := Makefile.Windows | |
| TODAY := $(shell date +%d-%B-%Y) | |
| PYTHON := py.exe -3 | |
| MAKEFLAGS += --warn-undefined-variables | |
| USE_ASTYLE ?= 1 |
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
| # | |
| # ngrep Makefile for Windows; MSVC + clang-cl | |
| # | |
| # Ref: https://github.com/jpr5/ngrep.git | |
| # | |
| THIS_FILE := Makefile.Windows | |
| TODAY := $(shell date +%d-%B-%Y) | |
| PYTHON := py -3 | |
| MAKEFLAGS += --warn-undefined-variables |
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
| /* | |
| * "Bleh" -- a "potato-friendly" cmatrix clone. | |
| * | |
| * Screenshot: https://i.imgur.com/dt6RmU7.png | |
| * | |
| * Adapted to Windows from: | |
| * https://www.reddit.com/r/commandline/comments/1jcnyht/bleh_a_potatofriendly_cmatrix_clone/ | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> |
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 Qt-DAB-6 using clang-cl. | |
| # (MSVC cannot build this due to heavy use of VLA etc.) | |
| # | |
| # By G. Vanem <[email protected]>. | |
| # | |
| THIS_FILE := Makefile.Windows | |
| TODAY := $(shell date +%d-%B-%Y) | |
| MAKEFLAGS += --warn-undefined-variables |
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 Hamlib (MSVC / clang-cl). | |
| # | |
| # G. Vanem <[email protected]> 2019 - 2023. | |
| # | |
| THIS_FILE := Makefile.Windows | |
| DATE := $(shell date +%d-%B-%Y) | |
| ABI_VER := 4 | |
| 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
| # | |
| # Makefile for curl-impersonate-chrome.exe supporting MSVC or clang-cl. | |
| # by Gisle Vanem <[email protected]> | |
| # | |
| # Ref: https://github.com/lwthiker/curl-impersonate.git | |
| # | |
| # Options and roots. Change to suite. | |
| # | |
| CURL_ROOT ?= .. | |
| CARES_ROOT ?= f:/MinGW32/src/inet/DNS/C-ares |
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 'NPcap driver'. | |
| # For MSVC + clang-cl, 32/64 bits. | |
| # | |
| # By <[email protected]> 2023. | |
| # | |
| TARGETS := NPcap.sys | |
| THIS_FILE := Makefile.Windows | |
| MAKEFLAGS += --warn-undefined-variables |
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
| # | |
| # Nettle + Hogweed Makefile for MSVC and clang-cl. | |
| # | |
| MAJOR_VERSION = 3 | |
| MINOR_VERSION = 8 | |
| PATCH_VERSION = 0 | |
| VERSION = $(MAJOR_VERSION).$(MINOR_VERSION) | |
| MAKEFLAGS += --warn-undefined-variables |
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
| # | |
| # GNUmake Makefile for Ltui (MSVC + clang-cl). | |
| # Ref: | |
| # https://github.com/tboox/ltui.git | |
| # | |
| # G.Vanem <[email protected]>, 2022. | |
| # | |
| TODAY := $(shell date +%d-%B-%Y) | |
| THIS_FILE := Makefile.Windows | |
| PYTHON ?= py -3 |
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
| #include <pcap/pcap.h> | |
| #include <pcap-int.h> | |
| #include <stdint.h> | |
| #include <stdarg.h> | |
| #include <signal.h> | |
| #ifdef _WIN32 | |
| #include <ntddndis.h> | |
| #endif |
NewerOlder