diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-24 17:39:47 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-24 17:49:08 -0400 |
commit | e4f0b282762a2182377d5e6141d09fba32cb79a2 (patch) | |
tree | 87c900e11fc2dea2b61d51e0b8e4e94c14723c1c /Makefile |
initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e949046 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CFILES = $(shell find src/ -name "*.c") +CFLAGS = -Isrc/include/ -pedantic +OUTPUT = bin/otrx +CC = gcc + +.PHONY: all +all: bin + $(CC) $(CFILES) $(CFLAGS) -o $(OUTPUT) + +.PHONY: bin +bin: + mkdir -p $@ |