mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-04 22:08:21 +00:00
9 lines
149 B
Makefile
9 lines
149 B
Makefile
|
ls.root: ls.c
|
||
|
compile -i ls.c keep=ls
|
||
|
|
||
|
itqsort.a: itqsort.c
|
||
|
compile +O itqsort.c keep=itqsort
|
||
|
|
||
|
ls: ls.root itqsort.a
|
||
|
link ls itqsort keep=ls
|