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
/* | |
* "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 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 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 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 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 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 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 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 |
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
# | |
# GNU Makefile for the SDR-Radio program Quisk. | |
# | |
# Supporting MinGW only. MSVC or clang-cl is not possible due | |
# to lack of C99 "complex types" support. | |
# | |
# By G. Vanem <[email protected]> 2020 - 2021. | |
# | |
# Ref: http://james.ahlstrom.name/quisk/ | |
# https://pypi.org/project/quisk/#files |
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
# | |
# GNU Makefile for Wget2 (MSVC and clang-cl). | |
# 32-bit only. | |
# | |
# By <[email protected]> 2015 - 2021. | |
# | |
THIS_FILE = Makefile.Windows | |
THIS_DIR = $(realpath .) | |
comma := , |
NewerOlder