[smuxi] Build: don't generate .mdb files as compile output



commit 9a18be8ebc58b39346ba8bb92b945fe3ec1df401
Author: Mirco Bauer <meebey meebey net>
Date:   Sat Mar 22 22:53:24 2014 +0100

    Build: don't generate .mdb files as compile output
    
    $@ is expanded for each item in the make target, thus .mdb became the output of
    the compile

 src/Engine-Campfire/Makefile.am        |    2 +-
 src/Engine-JabbR/Makefile.am           |    2 +-
 src/Engine-MessageBuffer/Makefile.am   |    2 +-
 src/Engine-Twitter/Makefile.am         |    2 +-
 src/Engine-XMPP/Makefile.am            |    2 +-
 src/Frontend-GNOME-Twitter/Makefile.am |    2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/Engine-Campfire/Makefile.am b/src/Engine-Campfire/Makefile.am
index 1398aa1..5997a78 100644
--- a/src/Engine-Campfire/Makefile.am
+++ b/src/Engine-Campfire/Makefile.am
@@ -37,4 +37,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET) $(ASSEMBLY_TARGET).mdb: $(SOURCES) $(DLL_REFERENCES)
-       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$@ $(SOURCES_BUILD)
+       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)
diff --git a/src/Engine-JabbR/Makefile.am b/src/Engine-JabbR/Makefile.am
index c29e87b..ec57bee 100644
--- a/src/Engine-JabbR/Makefile.am
+++ b/src/Engine-JabbR/Makefile.am
@@ -34,4 +34,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET) $(ASSEMBLY_TARGET).mdb: $(SOURCES) $(DLL_REFERENCES)
-       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$@ $(SOURCES_BUILD)
+       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)
diff --git a/src/Engine-MessageBuffer/Makefile.am b/src/Engine-MessageBuffer/Makefile.am
index cf3ba76..c6a042a 100644
--- a/src/Engine-MessageBuffer/Makefile.am
+++ b/src/Engine-MessageBuffer/Makefile.am
@@ -36,4 +36,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET): $(SOURCES) $(DLL_REFERENCES)
-       $(CSC) $(CSC_FLAGS) $(MSG_BUFFER_COMPILER_FLAGS) $(build_references_ref) -target:exe -out:$@ 
$(SOURCES_BUILD)
+       $(CSC) $(CSC_FLAGS) $(MSG_BUFFER_COMPILER_FLAGS) $(build_references_ref) -target:exe 
-out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)
diff --git a/src/Engine-Twitter/Makefile.am b/src/Engine-Twitter/Makefile.am
index e9dec8e..f51ed5b 100644
--- a/src/Engine-Twitter/Makefile.am
+++ b/src/Engine-Twitter/Makefile.am
@@ -34,4 +34,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET): $(SOURCES) $(DLL_REFERENCES)
-       $(MCS) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$@ $(SOURCES_BUILD)
+       $(MCS) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)
diff --git a/src/Engine-XMPP/Makefile.am b/src/Engine-XMPP/Makefile.am
index 9feb5d6..8fe02c5 100644
--- a/src/Engine-XMPP/Makefile.am
+++ b/src/Engine-XMPP/Makefile.am
@@ -37,4 +37,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET) $(ASSEMBLY_TARGET).mdb: $(SOURCES) $(DLL_REFERENCES)
-       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$@ $(SOURCES_BUILD)
+       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)
diff --git a/src/Frontend-GNOME-Twitter/Makefile.am b/src/Frontend-GNOME-Twitter/Makefile.am
index a02ac88..64a0056 100644
--- a/src/Frontend-GNOME-Twitter/Makefile.am
+++ b/src/Frontend-GNOME-Twitter/Makefile.am
@@ -35,4 +35,4 @@ include $(top_srcdir)/Makefile.include
 all: $(ASSEMBLY_TARGET)
 
 $(ASSEMBLY_TARGET) $(ASSEMBLY_TARGET).mdb: $(SOURCES) $(DLL_REFERENCES)
-       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$@ $(SOURCES_BUILD)
+       $(CSC) $(CSC_FLAGS) $(build_references_ref) -target:library -out:$(ASSEMBLY_TARGET) $(SOURCES_BUILD)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]