home: hub: 9ficl

ref: 46fbdcae1e954e4809eb0c67c0180f71fd618a8d
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)