#
# build MILO tools
#

TOOLS=	arc data sysgen

#
#  At  data.c  there is ifdef of "GNU_LIBC", which uses
#  printf format data of style:  "%016llx"
#  That is, "long long", I presume.
#  At OSF/1 single "l" is enough.
#

CC=cc
CFLAGS=-O

all: $(TOOLS)

clean:
	rm -f $(TOOLS) *.o *~

arc:	arc.o
data:	data.o
sysgen: sysgen.o
