summaryrefslogtreecommitdiff
path: root/Makefile
blob: af29818f2e6efd320fccf963c4c9737525a7b25f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: libcppbuild.a

SRC = \
	libcppbuild.cc \
	task_cc.cc \
	task_ld.cc \
	task_ar.cc \
	task.cc \
	execute.cc \

OBJ = $(patsubst %.cc,%.o,$(SRC))

CXXFLAGS = -g -O3 -std=c++17 -I.

%.o: %.cc
	g++ $(CXXFLAGS) -c $< -o $@

libcppbuild.a: $(OBJ)
	ar rcs $@ $(OBJ)

clean:
	rm -f libcppbuild.a $(OBJ)