mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-08 18:45:06 -05:00
14 lines
155 B
Makefile
14 lines
155 B
Makefile
CC = gcc
|
|
|
|
CFLAGS = -Wall -Wextra -std=c11 -O2
|
|
|
|
.PHONY: clean
|
|
|
|
SRCS = bin2c.c
|
|
|
|
bin2c: $(SRCS)
|
|
$(CC) $(CFLAGS) $(SRCS) -o $@
|
|
|
|
clean:
|
|
$(RM) bin2c bin2c.exe
|