diff options
Diffstat (limited to 'rtl/netware/demos/Makefile')
-rw-r--r-- | rtl/netware/demos/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rtl/netware/demos/Makefile b/rtl/netware/demos/Makefile new file mode 100644 index 0000000000..86cc121293 --- /dev/null +++ b/rtl/netware/demos/Makefile @@ -0,0 +1,25 @@ +# Makefile for freepascal nlm-test +# Needs working nlmconv + i386-netware-ld +# AD 8/2000 + +PPC386OPT = -XX -O3 -Tnetware -Xs +INCLUDES = + +OBJS = check.on + +%.on: %.pp + ppc386 $(PPC386OPT) $(INCLUDES) $*.pp + +all: $(OBJS) + +# copy test.nlm to sys:test on 4.11 (fs-develop) and 5.1 (fs-ad) server +install: all + ncftpput -u linux -p linux fs-develop /sys/test *.nlm + ncftpput -u linux -p linux fs-ad /sys/test *.nlm + +clean: + rm -f *.on *.nlm *.ppn *.s *.bak *.o *.a + +dist: clean + +distclean: clean |