fire/makefile

32 lines
518 B
Makefile
Raw Normal View History

2019-12-12 15:01:43 +00:00
#
# 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
2019-12-12 22:08:35 +00:00
CFLAGS = -g -std=c99 $(WARNING)
2019-12-12 15:01:43 +00:00
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