mirror of
https://github.com/ksherlock/dot_clean.git
synced 2025-02-02 05:30:07 +00:00
11 lines
198 B
Makefile
11 lines
198 B
Makefile
|
CXX = clang++
|
||
|
LINK.o = $(LINK.cc)
|
||
|
CXXFLAGS += -std=c++11
|
||
|
|
||
|
dot_clean: dot_clean.o mapped_file.o
|
||
|
|
||
|
mapped_file.o : mapped_file.cpp mapped_file.h
|
||
|
|
||
|
dot_clean.o : dot_clean.cpp mapped_file.h applefile.h
|
||
|
|