summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p67-Makefile')
-rw-r--r--x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p67-Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p67-Makefile b/x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p67-Makefile
deleted file mode 100644
index 15beba3ed032..000000000000
--- a/x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p67-Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-CC ?= gcc
-
-PLUGINDIR ?= $(shell pkg-config --variable=plugindir purple)
-
-CFLAGS += -Wall -fPIC
-LDFLAGS += -shared
-CPPFLAGS += $(shell pkg-config --cflags glib-2.0 json-glib-1.0 purple nss gnome-keyring-1)
-LIBS += $(shell pkg-config --libs glib-2.0 json-glib-1.0 purple nss)
-
-TARGET = libsteam.so
-
-OBJS = libsteam.o steam_connection.o
-
-%.o: %.c %.h
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $*.c
-
-$(TARGET): $(OBJS)
- $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
-
-install: $(TARGET)
- @install -Dm755 $(TARGET) "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
-
-uninstall:
- @rm -f "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
-
-clean:
- @rm -f $(OBJS) $(TARGET)
-
-.PHONY: uninstall clean