diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-04 20:48:10 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-06-04 20:48:10 +0000 |
commit | 4b31caa9cdaef67c70bc7fb43963ba68b7bf5bb1 (patch) | |
tree | b9d634a9199d7f69ae4e1f35d88edac63d04abcf /package/targets.mak | |
download | s6-rc-4b31caa9cdaef67c70bc7fb43963ba68b7bf5bb1.tar.xz |
Initial commit
Diffstat (limited to 'package/targets.mak')
-rw-r--r-- | package/targets.mak | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/targets.mak b/package/targets.mak new file mode 100644 index 0000000..2f19728 --- /dev/null +++ b/package/targets.mak @@ -0,0 +1,25 @@ +BIN_TARGETS := \ +s6-rc-compile \ +s6-rc-dryrun \ +s6-rc-db + +SBIN_TARGETS := \ +s6-rc-init \ +s6-rc + + +LIBEXEC_TARGETS := + +ifdef DO_ALLSTATIC +LIBS6RC := libs6rc.a +else +LIBS6RC := libs6rc.so +endif + +ifdef DO_SHARED +SHARED_LIBS := libs6rc.so +endif + +ifdef DO_STATIC +STATIC_LIBS := libs6rc.a +endif |