CC = gcc all: tf2hex tf2hex: tf2hex.c $(CC) -Os -s -Wall -Wextra -Wwrite-strings tf2hex.c -o tf2hex clean: rm -f tf2hex .PHONY: all clean