diff options
| author | Andrew Martinek <andrewrmartinek@gmail.com> | 2020-12-20 17:31:00 -0500 |
|---|---|---|
| committer | Andrew Martinek <andrewrmartinek@gmail.com> | 2020-12-20 17:31:00 -0500 |
| commit | e8ec8efa902ea56cf17bdcd908067247d13ee28d (patch) | |
| tree | ba708ba6b0e0125148de6de2c48713d0b64d70de /tools/Makefile | |
| parent | 5930b53dd28705197ebfc1a905ea3175552ba39a (diff) | |
| parent | 9fab715759ddf919b0c4bb9a01095c4c225fcac0 (diff) | |
Merge in master (and update some macros)
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..c235fee --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,16 @@ +.PHONY: all clean + +CC := gcc +CFLAGS := -O3 -std=c99 -Wall -Wextra -pedantic + +tools := scan_includes gfx + +all: $(tools) + @: + +clean: + rm -f $(tools) + +gfx: common.h +%: %.c + $(CC) $(CFLAGS) -o $@ $< |
