aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpulib
diff options
context:
space:
mode:
authornotaz2012-11-21 02:38:10 +0200
committernotaz2012-11-24 04:25:25 +0200
commitddd99692bc3e1246c2ccb5e551512f35b4f7959a (patch)
tree5a66818524cfae6bedade26bc8039f1d3d924d0d /plugins/gpulib
parent603efa29ac7176c5dc27cab52007d4c9f61c3069 (diff)
downloadpcsx_rearmed-ddd99692bc3e1246c2ccb5e551512f35b4f7959a.tar.gz
pcsx_rearmed-ddd99692bc3e1246c2ccb5e551512f35b4f7959a.tar.bz2
pcsx_rearmed-ddd99692bc3e1246c2ccb5e551512f35b4f7959a.zip
plugins: drop arch filename extensions
they do more harm than good
Diffstat (limited to 'plugins/gpulib')
-rw-r--r--plugins/gpulib/gpulib.mak8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/gpulib/gpulib.mak b/plugins/gpulib/gpulib.mak
index 22da6f5..ad6a8ad 100644
--- a/plugins/gpulib/gpulib.mak
+++ b/plugins/gpulib/gpulib.mak
@@ -17,10 +17,10 @@ endif
GPULIB_A = ../gpulib/gpulib$(EXT).a
ifdef BIN_STANDLALONE
-TARGETS += $(BIN_STANDLALONE)$(EXT)
+TARGETS += $(BIN_STANDLALONE)
endif
ifdef BIN_GPULIB
-TARGETS += $(BIN_GPULIB)$(EXT)
+TARGETS += $(BIN_GPULIB)
endif
CC_STANDLALONE = $(CC)
CC_GPULIB = $(CC)
@@ -34,7 +34,7 @@ ifdef BIN_STANDLALONE
ifneq ($(findstring .cpp,$(SRC_STANDALONE)),)
CC_STANDLALONE = $(CXX)
endif
-$(BIN_STANDLALONE)$(EXT): $(SRC) $(SRC_STANDALONE) $(GPULIB_A)
+$(BIN_STANDLALONE): $(SRC) $(SRC_STANDALONE) $(GPULIB_A)
$(CC_STANDLALONE) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) $(LDLIBS_STANDALONE)
ln -fs $(PLUGINDIR)/$@ ../
endif
@@ -43,7 +43,7 @@ ifdef BIN_GPULIB
ifneq ($(findstring .cpp,$(SRC_GPULIB)),)
CC_GPULIB = $(CXX)
endif
-$(BIN_GPULIB)$(EXT): $(SRC) $(SRC_GPULIB) $(GPULIB_A)
+$(BIN_GPULIB): $(SRC) $(SRC_GPULIB) $(GPULIB_A)
$(CC_GPULIB) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) $(LDLIBS_GPULIB)
ln -fs $(PLUGINDIR)/$@ ../
endif