summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-09-13 15:20:14 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:15 -0600
commit3e100e9de3cec5ec5e9a641e782ae47ca095233d (patch)
tree4419164e75c32490a96307335a9fd2c80d8161b4 /Makefile.in
parent3f829bcc56a0dff2ba4ed6e1a1c081b6262fbed9 (diff)
bichun!
fixed makefiles, moved around files The wrapper is now a hybrid shell-C program. A shell script does the integrated commands, but it calls the C program (`$(libexecdir)/rvs/runcom') to launch plugins Note that right now, it does EVERYTHING BUT launch plugins.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in34
1 files changed, 17 insertions, 17 deletions
diff --git a/Makefile.in b/Makefile.in
index bef0841..e72005a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -54,19 +54,18 @@ uninstall-plugins = $(addprefix uninstall-p-,$(plugins))
clean-plugins = $(addprefix clean-p-,$(plugins))
distclean-plugins = $(addprefix distclean-p-,$(plugins))
dist-plugins = $(addprefix dist-p-,$(plugins))
-
+$(info $(build-plugins))
# phony targets ####################################################
-all : $(rvs) $(build-plugins)
-.PHONY : install uninstall clean distclean dist libexec $(build-plugins) $(rvs)\
-$(install-plugins) $(uninstall-plugins) $(clean-plugins) $(distclean-plugins) \
- install-$(rvs) uninstall-$(rvs) clean-$(rvs) distclean-$(rvs) \
-$(dist-plugins) \
- dist-$(rvs)
+all : wrapper $(build-plugins)
+.PHONY : install uninstall clean distclean dist libexec \
+ build-wrapper install-wrapper uninstall-wrapper clean-wrapper distclean-wrapper dist-wrapper
+#$(build-plugins) $(install-plugins) $(uninstall-plugins) $(clean-plugins) $(distclean-plugins) $(dist-plugins)
+
.SUFFIXES :
# install ##########################################################
-install : install-$(rvs) libexec $(install-plugins)
+install : install-wrapper libexec $(install-plugins)
# $(libexecdir)/rvs/*
libexec : $(libexecdir)/$(rvs)/plugins
@@ -81,9 +80,9 @@ uninstall :
# clean ############################################################
-clean : $(clean-plugins) clean-$(rvs)
+clean : $(clean-plugins) clean-wrapper
-distclean : clean $(distclean-plugins) distclean-$(rvs)
+distclean : clean $(distclean-plugins) distclean-wrapper
$(RM) Makefile
# dist #############################################################
@@ -100,14 +99,15 @@ $(d) : distclean
# wrapper ##########################################################
-$(rvs) : wrapper/ wrapper/Makefile; $(MAKE) -C $<
-uninstall-$(rvs) : wrapper/ wrapper/Makefile; $(MAKE) -C $< uninstall
-clean-$(rvs) : wrapper/ wrapper/Makefile; $(MAKE) -C $< clean
-distclean-$(rvs) : wrapper/ wrapper/Makefile; $(MAKE) -C $< distclean
-dist-$(rvs) : wrapper/ wrapper/Makefile; $(MAKE) -C $< dist
+wrapper : build-wrapper
+build-wrapper : wrapper/ wrapper/Makefile; $(MAKE) -C $<
+uninstall-wrapper : wrapper/ wrapper/Makefile; $(MAKE) -C $< uninstall
+clean-wrapper : wrapper/ wrapper/Makefile; $(MAKE) -C $< clean
+distclean-wrapper : wrapper/ wrapper/Makefile; $(MAKE) -C $< distclean
+dist-wrapper : wrapper/ wrapper/Makefile; $(MAKE) -C $< dist
-install-$(rvs) : wrapper/ wrapper/Makefile $(rvs); $(MAKE) -C $< install
-$(RVS) : install-$(rvs)
+install-wrapper : wrapper/ wrapper/Makefile wrapper; $(MAKE) -C $< install
+$(RVS) : install-wrapper
# plugins ##########################################################