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

19 lines
233 B
Makefile
Raw Normal View History

2023-09-05 21:40:53 -04:00
#!/bin/make -f
PREFIX := .
CP := cp -f
2023-09-24 12:54:34 -04:00
export CFLAGS := -std=c89 -Werror -Wall -Wextra -Wpedantic -Wshadow -Wundef
2023-09-06 09:49:41 -04:00
export CPPFLAGS := -D_FORTIFY_SOURCE=2
2023-09-06 08:57:48 -04:00
2023-09-24 12:54:34 -04:00
all: plug src
2023-09-05 21:40:53 -04:00
2023-09-24 12:54:34 -04:00
plug:
make -C $@
2023-09-05 21:40:53 -04:00
2023-09-24 12:54:34 -04:00
src:
make -C $@
2023-09-05 21:40:53 -04:00
2023-09-24 12:54:34 -04:00
.PHONY: all plug src