aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/generated/Makefile
blob: fb6e761008649df1cc15ed8d999d601101b25645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#######################################################################
#                                                                     #
#              The Compcert verified compiler                         #
#                                                                     #
#        François Pottier, INRIA Paris-Rocquencourt                   #
#                                                                     #
#  Copyright Institut National de Recherche en Informatique et en     #
#  Automatique.  All rights reserved.  This file is distributed       #
#  under the terms of the INRIA Non-Commercial License Agreement.     #
#                                                                     #
#######################################################################

.PHONY: all clean

SOURCES := $(wildcard *.c)
TARGETS := \
  $(patsubst %.c,%.ccomp.err,$(SOURCES)) \
  $(patsubst %.c,%.gcc.err,$(SOURCES)) \
  $(patsubst %.c,%.clang.err,$(SOURCES))

CCOMP   := ../../../ccomp
GCC     := gcc
CLANG   := clang

all: $(TARGETS)

clean:
	@ rm -f *.err *~

%.ccomp.err: %.c $(CCOMP)
	@ echo $(CCOMP) -c $<
	@ if $(CCOMP) -c $< 2>$@ ; then \
	  echo "UNEXPECTED SUCCESS: $(CCOMP) -c $< SUCCEEDED!" ; \
	fi
	@ if grep "unknown syntax error" $@ ; then \
	  echo "UNKNOWN SYNTAX ERROR!" ; \
	fi

%.gcc.err: %.c
	@ echo $(GCC) -c $<
	@ if $(GCC) -c $< 2>$@ ; then \
	  echo "UNEXPECTED SUCCESS: $(GCC) -c $< SUCCEEDED!" ; \
	fi

%.clang.err: %.c
	@ echo $(CLANG) -c $<
	@ if $(CLANG) -c $< 2>$@ ; then \
	  echo "UNEXPECTED SUCCESS: $(CLANG) -c $< SUCCEEDED!" ; \
	fi