UNPKG

@aspectron/process-list

Version:

Cross-platform method to receive the list of the launched processes

17 lines (13 loc) 313 B
TOPLEVEL ?= $(dir $(lastword $(MAKEFILE_LIST))) CPPLINT ?= $(TOPLEVEL)/cpplint.py PYTHON ?= python LINT_SOURCES = \ src/main.cpp \ src/snapshot.cpp \ src/snapshot.h \ src/tasklist.h \ src/win/tasklist.cpp \ src/unix/tasklist.cpp .PHONY: lint lint: cd $(TOPLEVEL) && $(PYTHON) $(CPPLINT) $(LINT_SOURCES)