VOB/wk3/makefile

11 lines
144 B
Makefile

CC = clang++
CFLAGS = -Os -Wall
TARGET = main
EXTS = list.cpp
DEPS = list.h
all: build
build:
$(CC) $(CFLAGS) $(EXTS) $(TARGET).cpp -o outf