summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 73e948a..fa0c505 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,21 @@
CC := gcc
CFLAGS := -Wall -Wextra -std=c11 -O2 -fwrapv
BIN := bfcomp
+SNIPPETS := $(wildcard *.snippet.asm)
+SNIPPETHEADERS := $(patsubst %.asm,%.asm.h,$(SNIPPETS))
.PHONY: all clean remake
all: $(BIN)
clean:
- rm -rf $(BIN) *.dSYM
+ rm -rf $(BIN) *.asm.h *.dSYM
remake: clean all
-$(BIN): $(wildcard *.c *.h)
+$(BIN): $(wildcard *.c *.h) $(SNIPPETHEADERS)
$(CC) $(CFLAGS) -o $@ $(filter-out %.h,$^)
+
+%.asm.h: %.asm
+ (printf '#pragma once\n\n'; xxd -i $^ | sed 's/[0-9a-f]$$/&, 0x00/' | sed 's/unsigned //g') >$@