Blob
1 .POSIX:2 .SUFFIXES: .S4 PREFIX = /usr/local5 LDFLAGS = -g -no-pie7 all: rvforth9 od: rvforth10 llvm-objdump -d rvforth | less12 gdb: rvforth13 egdb ./rvforth15 nm: rvforth16 nm rvforth | sort -n | less18 run: rvforth19 rlwrap ./rvforth21 test: rvforth22 ./rvforth < test.fs24 clean:25 rm -f rvforth *.core27 install: rvforth28 mkdir -p ${DESTDIR}${PREFIX}/bin29 cp -f rvforth ${DESTDIR}${PREFIX}/bin/31 .S:32 ${CC} -o $@ $< ${CFLAGS} ${LDFLAGS}