Add skeleton of members base.
This commit is contained in:
parent
9564563199
commit
98a772cee9
4 changed files with 59 additions and 12 deletions
10
Makefile
10
Makefile
|
@ -24,7 +24,8 @@
|
|||
#
|
||||
|
||||
brmsaptool: brmsaptool.o 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
|
||||
csc -o brmsaptool $^
|
||||
|
||||
.PHONY: clean
|
||||
|
@ -46,7 +47,7 @@ clean:
|
|||
brmsaptool.o: brmsaptool.scm testing.import.scm listing.import.scm \
|
||||
dictionary.import.scm month.import.scm period.import.scm \
|
||||
ansi.import.scm member-file.import.scm \
|
||||
command-line.import.scm
|
||||
command-line.import.scm members-base.import.scm
|
||||
|
||||
TESTING-SOURCES=testing.scm
|
||||
|
||||
|
@ -89,3 +90,8 @@ COMMAND-LINE-SOURCES=command-line.scm testing.import.scm
|
|||
|
||||
command-line.o: $(COMMAND-LINE-SOURCES)
|
||||
command-line.import.scm: $(COMMAND-LINE-SOURCES)
|
||||
|
||||
MEMBERS-BASE-SOURCES=members-base.scm testing.import.scm
|
||||
|
||||
members-base.o: $(MEMBERS-BASE-SOURCES)
|
||||
members-base.import.scm: $(MEMBERS-BASE-SOURCES)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue