#### host, target, and site specific Makefile frags come in here.

srcdir = .
SHELL = /bin/sh

all:		exp-test

exp-test:	testcode.c Makefile
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ testcode.c

clean:
	-rm -rf *.o exp-test *.diff *~ *.bad core

distclean:	clean
	-rm -f Makefile config.status testcode.c

Makefile : $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
	$(SHELL) ./config.status
