소스 검색

Updated Makefile to print a Tree

master
Nathan R 3 년 전
부모
커밋
5575293069
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      Makefile

+ 7
- 1
Makefile 파일 보기

@ -5,6 +5,9 @@ MAIN = ccmeta
all : $(MAIN)
tree : all .FORCE
./$(MAIN) < $(MAIN)-tree.txt > $(MAIN)-tree.out
test : all .FORCE
./$(MAIN) < $(MAIN)-test.txt > $(MAIN)-test.out
diff $(MAIN)-test.ref $(MAIN)-test.out
@ -24,6 +27,9 @@ tidy : .FORCE
clean : .FORCE
rm -f $(MAIN) $(MAIN).c
spotless : clean tidy
Rtree : .FORCE
rm -f *~ $(MAIN)-tree.out
spotless : clean tidy Rtree
.FORCE :

불러오는 중...
취소
저장