mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-13 07:38:47 +00:00
8 lines
110 B (Stored with Git LFS)
Makefile
8 lines
110 B (Stored with Git LFS)
Makefile
export INCLUDE_PATH
|
|
CXXFLAGS = -I$(INCLUDE_PATH) -O2
|
|
|
|
all: chk judger
|
|
|
|
% : %.cpp
|
|
$(CXX) $(CXXFLAGS) $< -o $@
|