1
0
mirror of https://github.com/CTCaer/hekate.git synced 2024-10-03 05:02:04 +00:00
hekate/tools/bin2c/Makefile

13 lines
133 B
Makefile
Raw Normal View History

2020-07-04 19:12:12 +00:00
NATIVE_CC ?= gcc
.PHONY: all clean
all: bin2c
@echo > /dev/null
clean:
rm -f bin2c
bin2c: bin2c.c
@$(NATIVE_CC) -o $@ bin2c.c