11 lines
144 B
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
|