Makefile
1 2 3 4 5 6 7
# Default Compiler and Flags CC ?= gcc CFLAGS ?= -Wall -Wextra -g LDFLAGS ?= hex: hex.c $(CC) $(CFLAGS) $(LDFLAGS) -c $< -o $@