mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-29 11:18:50 +02:00
18 lines
284 B
Makefile
Vendored
18 lines
284 B
Makefile
Vendored
.PHONY: all clean
|
|
|
|
TARGETS := table_dec_32bit.h table_enc_12bit.h table_generator
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
$(RM) $(TARGETS)
|
|
|
|
table_dec_32bit.h: table_generator
|
|
./$^ > $@
|
|
|
|
table_enc_12bit.h: table_enc_12bit.py
|
|
./$^ > $@
|
|
|
|
table_generator: table_generator.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|