mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
17 lines
202 B
Makefile
17 lines
202 B
Makefile
|
.DEFAULT_GOAL := addrbook
|
||
|
CC = clang++
|
||
|
CFLAGS = -std=c++20 -g -O3
|
||
|
SRC = AddrBook.cpp
|
||
|
|
||
|
default: addrbook
|
||
|
|
||
|
|
||
|
.PHONY: addrbook
|
||
|
addrbook: $(SRC)
|
||
|
$(CC) -o $@ $^ $(CFLAGS)
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
clean:
|
||
|
rm addrbook
|