freebsd-skq/utils/VtableTest/Makefile

25 lines
523 B
Makefile
Raw Normal View History

2010-01-15 15:39:40 +00:00
GXX := llvm-g++-4.2
CLANGXX := clang++
all: one
test.cc: gen.cc
g++ gen.cc -o gen
2010-04-02 08:55:10 +00:00
./gen >test.cc
2010-01-15 15:39:40 +00:00
test-gcc.sum: test.cc
time $(GXX) test.cc -o test-gcc.s -S
$(GXX) test-gcc.s -o test-gcc
2010-04-02 08:55:10 +00:00
./test-gcc >test-gcc.sum
2010-01-15 15:39:40 +00:00
test-clang.sum: test.cc
time $(CLANGXX) test.cc -o test-clang.s -S
$(CLANGXX) test-clang.s -o test-clang
2010-04-02 08:55:10 +00:00
./test-clang >test-clang.sum
2010-01-15 15:39:40 +00:00
one: test-gcc.sum test-clang.sum
cmp test-gcc.sum test-clang.sum
2010-04-02 08:55:10 +00:00
clean:
rm -f gen test-gcc test-clang test.cc test-gcc.sum test-clang.sum test-gcc.s test-clang.s