mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-19 11:30:51 +00:00
451e159fb7
of the util shipped with GNO v2.0.4.
18 lines
391 B
Makefile
18 lines
391 B
Makefile
main.a: main.c pathnames.h
|
|
compile -i main.c keep=main
|
|
|
|
init.a: init.c pathnames.h
|
|
compile -i init.c keep=init
|
|
|
|
subr.a: subr.c
|
|
compile -i subr.c keep=subr
|
|
|
|
gettytab.a: gettytab.c pathnames.h
|
|
compile -i +w gettytab.c keep=gettytab
|
|
|
|
ttydflts.a: ttydefaults.c
|
|
compile -i ttydefaults.c keep=ttydflts
|
|
|
|
getty: main.c init.c subr.c gettytab.c ttydefaults.c
|
|
compile linkfile
|