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-06 12:57:48 +00:00

24 lines
339 B
Makefile

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