17ef395584
aim of this implementation is to provide a general and widely used tool for the simple programmer. One of the reason behind the success of the Microsoft operating systems is VisualBasic, which is built into many of the applications Microsoft delivers. Why are UNIX and other non-Microsoft operating system users prohibited to use the simplest programming language? ScriptBasic is a BASIC implementation, which aims not less than becoming the most widely used scripting tool on UNIX systems. It is portable, it is BASIC, it is a scripting tool and it is GNU LGPL. PR: ports/24133 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
29 lines
760 B
Text
29 lines
760 B
Text
--- Makefile.orig Wed Dec 27 19:52:16 2000
|
|
+++ Makefile Fri Jan 12 18:34:19 2001
|
|
@@ -1,8 +1,8 @@
|
|
CC=cc
|
|
LDOPTIONS=-shared
|
|
LD=ld
|
|
-CCFLAGS=
|
|
-LIBS=-lm -ldl -lpthread
|
|
+CCFLAGS=$(CFLAGS)
|
|
+LIBS=-lm -lc_r
|
|
OBJS=builder.o conftree.o dynlolib.o execute.o\
|
|
expression.o filesys.o getopt.o lexer.o match.o\
|
|
memory.o myalloc.o options.o reader.o report.o sym.o\
|
|
@@ -20,7 +20,6 @@
|
|
.PHONY: headers clean install all
|
|
|
|
all: headers scriba cftc cgi.so hash.so re.so basicc.a
|
|
- sh install.sh
|
|
|
|
clean :
|
|
rm *.so *.o *.h ./scriba
|
|
@@ -39,7 +38,6 @@
|
|
|
|
scriba : $(OBJS) $(COBJS) scribacmd.o
|
|
$(CC) -o scriba $(LIBS) $(OBJS) $(COBJS) scribacmd.o
|
|
- scriba -v
|
|
|
|
cftc : cftc.o confpile.o conftree.o lsp.o
|
|
$(CC) -o cftc $(LIBS) cftc.o confpile.o conftree.o lsp.o
|