1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/CFrontend/Makefile

17 lines
596 B
Makefile
Raw Normal View History

2002-01-23 22:56:15 +01:00
# test/Regression/CFrontend/Makefile
#
# This directory contains regression tests for the GCC C frontend for LLVM.
# These tests are C source files that are input to GCC and compiled to .ll
# files. After that, the files are assembled by the LLVM 'as' program to make
# sure GCC emitted something valid. This is intended to catch crashers and bad
# output by GCC.
#
# TODO: If the verify pass ever gets written, it should be run on the output.
#
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests
TESTS := $(wildcard *.c)
all:: $(addprefix Output/, $(TESTS:%.c=%.tbc))