Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/fslurp/files: fslurp-2.1.2-makefile.patch
Date: Tue, 30 Oct 2012 09:44:33
Message-Id: 20121030094421.465BA21601@flycatcher.gentoo.org
1 radhermit 12/10/30 09:44:21
2
3 Added: fslurp-2.1.2-makefile.patch
4 Log:
5 Version bump.
6
7 (Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.1 app-misc/fslurp/files/fslurp-2.1.2-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: fslurp-2.1.2-makefile.patch
16 ===================================================================
17 --- fslurp-2.1.2/Makefile
18 +++ fslurp-2.1.2/Makefile
19 @@ -46,31 +46,31 @@
20 SIMINCLUDES = simulator.h
21
22 #DEBUGFLAGS = -g
23 -CFLAGS = -c -Wall $(DEBUGFLAGS)
24 +CFLAGS += -c -Wall $(DEBUGFLAGS)
25
26 -LDFLAGS = -lm
27 +LIBS = -lm
28
29 VERSION := fslurp-$(shell tail -1 version)
30
31 all: $(TARGETS)
32
33 fslurp: $(FSLURP_OBJS)
34 - $(CC) $(LDFLAGS) $^ -o $@
35 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
36
37 simSolarNet2i1s: \
38 $(SIMSOLARNET2I1S_OBJS)
39 - $(CC) $(LDFLAGS) $^ -o $@
40 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
41
42 simSolarNet1i0s: \
43 $(SIMSOLARNET1I0S_OBJS)
44 - $(CC) $(LDFLAGS) $^ -o $@
45 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
46
47 simSolarNet0i0s: \
48 $(SIMSOLARNET0I0S_OBJS)
49 - $(CC) $(LDFLAGS) $^ -o $@
50 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
51
52 simIFCEasy: $(SIMIFCEASY_OBJS)
53 - $(CC) $(LDFLAGS) $^ -o $@
54 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
55
56 test: $(TARGETS) clean
57 ./testcase.sh