1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-19 21:44:57 +01:00
hekate/tools/bin2c/Makefile
2020-07-04 22:12:12 +03:00

13 lines
133 B
Makefile

NATIVE_CC ?= gcc
.PHONY: all clean
all: bin2c
@echo > /dev/null
clean:
rm -f bin2c
bin2c: bin2c.c
@$(NATIVE_CC) -o $@ bin2c.c