home: hub: 9ficl

ref: 9bf1a4f7aff42b91b979f0b37285014014d997b7
dir: /Makefile.riscos/

View raw version
OBJECTS= dict.o ficl.o math64.o softcore.o stack.o sysdep.o vm.o words.o
HEADERS= ficl.h math64.h sysdep.h
#
# Flags for shared library
CFLAGS= -O -c -mstubs -D__UNAME
CC=gcc
LIB = makealf -qls -o

MAJOR = 3
MINOR = 0.0

lib: o.libficl

ficl: testmain.o ficl.h sysdep.h o.libficl
	$(CC) testmain.o -o ficl -L. -lficl -lm

# static library build
o.libficl: $(OBJECTS)
        $(LIB) o.libficl $(OBJECTS)