Rename in the scripts.
This commit is contained in:
parent
823c77ff33
commit
5465171004
2 changed files with 13 additions and 13 deletions
22
Makefile
22
Makefile
|
@ -27,50 +27,50 @@
|
||||||
default: imports
|
default: imports
|
||||||
|
|
||||||
.PHONY: shared
|
.PHONY: shared
|
||||||
shared: brmsaptool
|
shared: bbstool
|
||||||
|
|
||||||
.PHONY: static
|
.PHONY: static
|
||||||
static: brmsaptool-static
|
static: bbstool-static
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: imports shared static
|
all: imports shared static
|
||||||
|
|
||||||
CSC=csc
|
CSC=csc
|
||||||
|
|
||||||
BRMSAPTOOL-DEPS=brmsaptool.scm testing.import.scm listing.import.scm \
|
BBSTOOL-DEPS=bbstool.scm testing.import.scm listing.import.scm \
|
||||||
dictionary.import.scm month.import.scm period.import.scm \
|
dictionary.import.scm month.import.scm period.import.scm \
|
||||||
ansi.import.scm member-file.import.scm \
|
ansi.import.scm member-file.import.scm \
|
||||||
command-line.import.scm members-base.import.scm \
|
command-line.import.scm members-base.import.scm \
|
||||||
utils.import.scm primes.import.scm member-record.import.scm \
|
utils.import.scm primes.import.scm member-record.import.scm \
|
||||||
configuration.import.scm progress.import.scm
|
configuration.import.scm progress.import.scm
|
||||||
|
|
||||||
BRMSAPTOOL-SOURCES=brmsaptool.scm testing.scm listing.scm \
|
BBSTOOL-SOURCES=bbstool.scm testing.scm listing.scm \
|
||||||
dictionary.scm month.scm period.scm ansi.scm member-file.scm \
|
dictionary.scm month.scm period.scm ansi.scm member-file.scm \
|
||||||
command-line.scm members-base.scm utils.scm primes.scm \
|
command-line.scm members-base.scm utils.scm primes.scm \
|
||||||
member-record.scm configuration.scm progress.scm
|
member-record.scm configuration.scm progress.scm
|
||||||
|
|
||||||
BRMSAPTOOL-OBJS=testing.o listing.o month.o period.o ansi.o \
|
BBSTOOL-OBJS=testing.o listing.o month.o period.o ansi.o \
|
||||||
member-file.o dictionary.o command-line.o \
|
member-file.o dictionary.o command-line.o \
|
||||||
members-base.o utils.o primes.o member-record.o \
|
members-base.o utils.o primes.o member-record.o \
|
||||||
configuration.o progress.o
|
configuration.o progress.o
|
||||||
|
|
||||||
BRMSAPTOOL-SHARED=testing.so listing.so month.so period.so ansi.so \
|
BBSTOOL-SHARED=testing.so listing.so month.so period.so ansi.so \
|
||||||
member-file.so dictionary.so command-line.so \
|
member-file.so dictionary.so command-line.so \
|
||||||
members-base.so utils.so primes.so member-record.so \
|
members-base.so utils.so primes.so member-record.so \
|
||||||
configuration.so progress.so
|
configuration.so progress.so
|
||||||
|
|
||||||
.PHONY: imports
|
.PHONY: imports
|
||||||
imports: $(BRMSAPTOOL-DEPS)
|
imports: $(BBSTOOL-DEPS)
|
||||||
|
|
||||||
brmsaptool: $(BRMSAPTOOL-DEPS)
|
bbstool: $(BBSTOOL-DEPS)
|
||||||
$(CSC) -o $@ $<
|
$(CSC) -o $@ $<
|
||||||
|
|
||||||
brmsaptool-static: $(BRMSAPTOOL-OBJS)
|
bbstool-static: $(BBSTOOL-OBJS)
|
||||||
$(CSC) -static -o $@ $(BRMSAPTOOL-SOURCES)
|
$(CSC) -static -o $@ $(BBSTOOL-SOURCES)
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f *.c *.so *.link *.o *.import.scm brmsaptool brmsaptool-static
|
rm -f *.c *.so *.link *.o *.import.scm bbstool bbstool-static
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# Module static and shared object and import source compilation
|
# Module static and shared object and import source compilation
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# brmsaptool.sh
|
# bbstool.sh
|
||||||
#
|
#
|
||||||
# Runs the tool as Scheme script using csi.
|
# Runs the tool as Scheme script using csi.
|
||||||
#
|
#
|
||||||
|
@ -34,6 +34,6 @@ csi -q -b \
|
||||||
member-file.scm \
|
member-file.scm \
|
||||||
command-line.scm \
|
command-line.scm \
|
||||||
members-base.scm \
|
members-base.scm \
|
||||||
brmsaptool.scm \
|
bbstool.scm \
|
||||||
-- \
|
-- \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue