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 13:49:41 +00:00

21 lines
322 B
Makefile

#!/bin/make -f
PREFIX := .
CP := cp -f
export CFLAGS := -std=c89 -Wall -Wextra -Wpedantic -Wshadow -Wundef
export CPPFLAGS := -D_FORTIFY_SOURCE=2
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