all:
	@echo check Makefile for possible targets

with-gcc:
	./configure
	mv config.log config.log.with-gcc
	gcc -I. -dM -E t.c > t.c.with-gcc
	gcc -I. -c t.c
  
with-gpp:
	./configure CC=g++
	mv config.log config.log.with-gpp
	g++ -I. -dM -E t.c > t.c.with-gpp
	g++ -I. -c t.c

with-gpp-working:
	./configure CC=g++ CPPFLAGS=-D__STDC_LIMIT_MACROS
	mv config.log config.log.with-gpp-working
	g++ -I. -dM -E -D__STDC_LIMIT_MACROS t.c > t.c.with-gpp-working
	g++ -I. -D__STDC_LIMIT_MACROS -c t.c
