Simplified Amakefile
This commit is contained in:
parent
d443d61b09
commit
d4c2c7ca2c
1 changed files with 10 additions and 14 deletions
|
@ -1,15 +1,11 @@
|
||||||
AMAKELIB = { . , /usr/local/lib/amake } ;
|
AMAKELIB = { . , /usr/local/lib/amake } ;
|
||||||
|
|
||||||
|
%include std-amake.amk ;
|
||||||
%include ack-defs.amk ;
|
%include ack-defs.amk ;
|
||||||
%include common.amk ;
|
|
||||||
%include cc_hh_tools.amk ;
|
%include cc_hh_tools.amk ;
|
||||||
%include tok_tools.amk ;
|
%include tok_tools.amk ;
|
||||||
%include op_tools.amk ;
|
%include op_tools.amk ;
|
||||||
%include char_tools.amk ;
|
%include char_tools.amk ;
|
||||||
%include LLgen.amk ;
|
|
||||||
%include cc-c.amk ;
|
|
||||||
%include loader.amk ;
|
|
||||||
%include lint.amk ;
|
|
||||||
|
|
||||||
%default grind ;
|
%default grind ;
|
||||||
|
|
||||||
|
@ -20,9 +16,9 @@ TOKENNAMES = tokenname.c [
|
||||||
];
|
];
|
||||||
|
|
||||||
DBS_LLTARGETS = {
|
DBS_LLTARGETS = {
|
||||||
db_symtab.c[type=C-src],
|
db_symtab.c,
|
||||||
DBSpars.c[type=C-src],
|
DBSpars.c,
|
||||||
DBSpars.h[type=C-incl]
|
DBSpars.h
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
DBS_LLSRC = {
|
DBS_LLSRC = {
|
||||||
|
@ -30,10 +26,10 @@ DBS_LLSRC = {
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
CMD_LLTARGETS = {
|
CMD_LLTARGETS = {
|
||||||
tokenfile.c[type=C-src],
|
tokenfile.c,
|
||||||
commands.c[type=C-src],
|
commands.c,
|
||||||
Lpars.c[type=C-src],
|
Lpars.c,
|
||||||
Lpars.h[type=C-incl]
|
Lpars.h
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
CMD_LLSRC = {
|
CMD_LLSRC = {
|
||||||
|
@ -42,8 +38,8 @@ CMD_LLSRC = {
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
GENNEXTSRC = {
|
GENNEXTSRC = {
|
||||||
file.h[type=C-incl],
|
file.h,
|
||||||
next.c[type=C-src]
|
next.c
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
CSRC = {
|
CSRC = {
|
||||||
|
|
Loading…
Reference in a new issue