cstart/Lectures/Lecture1/Codes/makefile

14 lines
188 B
Makefile

CC := gcc
CFLAGS := -Wall -Wextra -Werror -g -std=c11
TARGET := float hello-world
all: $(TARGET)
$(TARGET): %:%.c
$(CC) $(CFLAGS) -o $@ $<
clean:
-rm -rf $(TARGET)
.PHONY: all clean