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 := , |
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
#!/usr/bin/env python3 | |
"""Compare actual output Json-formatted output lines of | |
rtl_433 with reference json.""" | |
import sys | |
import os | |
import argparse | |
import fnmatch |
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 DearPyGui (MSVC / clang-cl). | |
# | |
# By G. Vanem <[email protected]> 2021. | |
# | |
# Ref: https://github.com/hoffstadt/DearPyGui.git | |
# | |
TODAY = $(shell date +%d-%B-%Y) | |
THIS_FILE = $(firstword $(MAKEFILE_LIST)) |
NewerOlder