Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xwit/files: Makefile
Date: Sat, 03 Apr 2010 00:55:20
Message-Id: E1Nxrdt-0007aQ-Qo@stork.gentoo.org
1 ssuominen 10/04/03 00:55:17
2
3 Added: Makefile
4 Log:
5 Use small Makefile instead of obsolete X11R6 imake.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 x11-misc/xwit/files/Makefile
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xwit/files/Makefile?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xwit/files/Makefile?rev=1.1&content-type=text/plain
13
14 Index: Makefile
15 ===================================================================
16 src = xwit.c dsimple.c ClientWin.c
17 o = $(addsuffix .o,$(basename ${src}))
18
19 all: xwit
20
21 %.o: %.cpp
22 $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
23
24 xwit: $(o)
25 $(CC) $(LDFLAGS) $(o) -o xwit -lX11