Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-opensteamworks/files: pidgin-opensteamworks-1.0_p32-Makefile pidgin-opensteamworks-1.0_p30-Makefile
Date: Thu, 24 May 2012 01:37:26
Message-Id: 20120524013716.0932620033@flycatcher.gentoo.org
1 hasufell 12/05/24 01:37:15
2
3 Added: pidgin-opensteamworks-1.0_p32-Makefile
4 Removed: pidgin-opensteamworks-1.0_p30-Makefile
5 Log:
6 version bump with Manuel Rueger
7
8 (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p32-Makefile
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p32-Makefile?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-opensteamworks/files/pidgin-opensteamworks-1.0_p32-Makefile?rev=1.1&content-type=text/plain
15
16 Index: pidgin-opensteamworks-1.0_p32-Makefile
17 ===================================================================
18 CC ?= gcc
19
20 PLUGINDIR ?= $(shell pkg-config --variable=plugindir purple)
21
22 CFLAGS += -Wall -fPIC
23 LDFLAGS += -shared
24 CPPFLAGS += $(shell pkg-config --cflags glib-2.0 json-glib-1.0 purple)
25 LIBS += $(shell pkg-config --libs glib-2.0 json-glib-1.0 purple)
26
27 TARGET = libsteam.so
28
29 OBJS = libsteam.o steam_connection.o
30
31 %.o: %.c %.h
32 $(CC) $(CFLAGS) $(CPPFLAGS) -c $*.c
33
34 $(TARGET): $(OBJS)
35 $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
36
37 install: $(TARGET)
38 @install -Dm755 $(TARGET) "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
39
40 uninstall:
41 @rm -f "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
42
43 clean:
44 @rm -f $(OBJS) $(TARGET)
45
46 .PHONY: uninstall clean