WIP/cpp -> next #31

닫힘
crtxcr WIP/cpp 에서 next 로 16 commits 를 머지하려 합니다
7개의 변경된 파일2264개의 추가작업 그리고 1719개의 파일을 삭제
Showing only changes of commit 0f39ee7061 - Show all commits

파일 보기

@@ -7,13 +7,17 @@ CXXFLAGS = -std=c++20 -Wall -Wextra -pedantic
clean:
rm -f test testcpp
rm -f test exile.o testcpp
test: test.c exile.h
$(CC) test.c exile.c -g $(CFLAGS) -o test
testcpp: test.cpp exile.h exile.hpp
$(CXX) test.cpp -g $(CXXFLAGS) -o testcpp
exile.o: exile.c exile.h
$(CC) -c exile.c -g $(CFLAGS) -o exile.o
test: test.c exile.h exile.o
$(CC) test.c exile.o -g $(CFLAGS) -o test
testcpp: test.cpp exile.h exile.hpp exile.o
$(CXX) test.cpp exile.o -g $(CXXFLAGS) -o testcpp
tests: test testcpp