File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ TARGET =main.cpp
2+ OUTPUT =a.out
3+ LIBPATH =$(HOME ) /src/github.com/hidehic0/library_cpp
4+ PROJECTPATH =$(HOME ) /src/github.com/hidehic0/atcoder
5+
6+ cpp-build : $(TARGET )
7+ @$(PROJECTPATH ) /.bin/date_check_build.sh " g++ -I$( LIBPATH) -std=gnu++23 -Wall $( TARGET) " $(TARGET ) $(OUTPUT )
8+
9+ cpp-debug : $(TARGET )
10+ @rm -f a.out
11+ @$(PROJECTPATH ) /.bin/date_check_build.sh " g++ -I$( LIBPATH) -std=gnu++23 -g -Wall $( TARGET) " $(TARGET ) $(OUTPUT )
12+
13+ cpp-run : cpp-build
14+ @./$(OUTPUT )
15+
16+ cpp-bundle : $(TARGET )
17+ @oj-bundle $(TARGET ) -I$(LIBPATH ) | wl-copy
Original file line number Diff line number Diff line change 22 "task" : {
33 "program" : [
44 " main.py" ,
5- " main.cpp"
5+ " main.cpp" ,
6+ " Makefile"
67 ],
78 "submit" : " main.py"
89 }
You can’t perform that action at this time.
0 commit comments