fire/makefile
Kied Llaentenn 202083fcef update
2019-12-12 17:08:35 -05:00

32 lines
518 B
Makefile

#
# fire: the pre-cambrian DOOM animation in the terminal
# (c) Kied Llaentenn
# See the LICENSE for more information
#
NAME = fire
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
-Wold-style-definition -Werror
CC = clang
CFLAGS = -g -std=c99 $(WARNING)
LDFLAGS = -fuse-ld=lld
SRC = main.c
OBJ = $(SRC:.c=.o)
all: $(NAME)
clean:
rm -f $(NAME) $(OBJ)
.c.o:
@echo "\tCC\t\t$@"
@$(CC) $(CFLAGS) -c $<
$(NAME): $(OBJ)
@echo "\tLD\t\t$(NAME)"
@$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
.PHONY: all clean