diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-06-04 18:25:49 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-06-04 18:25:49 +0200 |
commit | 7c7a2ed5417f36780da11299ed463d8861cad762 (patch) | |
tree | bcc1c3eddbacb573c7bf791589cba8d6bec68958 /base | |
parent | 705e66e0957e570cf8bfefd63eec2ac7e268e651 (diff) | |
download | mupdf-7c7a2ed5417f36780da11299ed463d8861cad762.tar.xz |
new world order iii -- jamming
Diffstat (limited to 'base')
-rw-r--r-- | base/Jamfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/base/Jamfile b/base/Jamfile new file mode 100644 index 00000000..0436cffd --- /dev/null +++ b/base/Jamfile @@ -0,0 +1,17 @@ +SubDir TOP base ; + +Library libbase : + base_cpudep.c + base_error.c + base_hash.c + base_matrix.c + base_memory.c + base_rect.c + base_rune.c + ; + +if $(NEED_GETOPT) = yes { Library libbase : util_getopt.c ; } +if $(NEED_STRLCAT) = yes { Library libbase : util_strlcat.c ; } +if $(NEED_STRLCPY) = yes { Library libbase : util_strlcpy.c ; } +if $(NEED_STRSEP) = yes { Library libbase : util_strsep.c ; } + |