Archived
1
0
This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
plugin/Makefile
2023-09-24 16:54:34 +00:00

19 lines
233 B
Makefile

#!/bin/make -f
PREFIX := .
CP := cp -f
export CFLAGS := -std=c89 -Werror -Wall -Wextra -Wpedantic -Wshadow -Wundef
export CPPFLAGS := -D_FORTIFY_SOURCE=2
all: plug src
plug:
make -C $@
src:
make -C $@
.PHONY: all plug src