home: hub: 9ficl

ref: 25cb3c9b645d3b3e1a74a7a931df4602ff014c69
dir: /Makefile.riscos/

View raw version
OBJECTS= dict.o ficl.o fileaccess.o float.o math64.o prefix.o search.o softcore.o stack.o sysdep.o tools.o unix.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)