ocaml/asmrun/Makefile

24 lines
359 B
Makefile
Raw Normal View History

ARCH=alpha
CC=gcc
CFLAGS=-O2 -D$(ARCH) -Wall
#CFLAGS=-g -DDEBUG -Wall
AS=as
ASFLAGS=-O2
OBJS=runtime.o gc.o debug.o compare.o $(ARCH).o
librun.a: $(OBJS)
rm -f librun.a
ar rc librun.a $(OBJS)
ranlib librun.a
.SUFFIXES: .asm .o
.asm.o:
$(AS) $(ASFLAGS) -o $*.o $*.asm
clean::
rm -f *.o *.s *.a *~
runtime.o gc.o compare.o debug.o: mlvalues.h misc.h