소스 검색

Removed clang build

Sergey Lyubka 11 년 전
부모
커밋
e6e101453d
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      Makefile

+ 0 - 1
Makefile

@@ -4,7 +4,6 @@ CFLAGS = -W -Wall -pedantic -O3 $(CFLAGS_EXTRA)
 all:
 	cc unit_test.c -o unit_test $(CFLAGS) && ./unit_test
 	g++ unit_test.c -o unit_test $(CFLAGS) && ./unit_test
-	clang unit_test.c -o unit_test $(CFLAGS) $(PROF) && ./unit_test
 	gcov -a unit_test.c
 
 w: