diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/lists/mkpkg | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/lists/mkpkg')
-rw-r--r-- | pkg/lists/mkpkg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pkg/lists/mkpkg b/pkg/lists/mkpkg new file mode 100644 index 00000000..ca6a80f6 --- /dev/null +++ b/pkg/lists/mkpkg @@ -0,0 +1,32 @@ +# Make the LISTS package. + +$call relink +$exit + +update: + $call relink + $call install + ; + +relink: + $set LIBS = "-lxtools -lds" + + $update libpkg.a + $omake x_lists.x + $link x_lists.o libpkg.a $(LIBS) -o xx_lists.e + ; + +install: + $move xx_lists.e bin$x_lists.e + ; + +libpkg.a: + columns.x + lintran.x <ctype.h> <pattern.h> + rgcursor.x + rimcursor.x <mach.h> <mwset.h> + table.x <ctype.h> + tokens.x <ctotok.h> + unique.x + words.x + ; |