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.4-makefile.patch
Date: Mon, 23 Dec 2013 17:48:20
Message-Id: 20131223174816.517242004E@flycatcher.gentoo.org
1 radhermit 13/12/23 17:48:16
2
3 Added: fslurp-2.1.4-makefile.patch
4 Log:
5 Version bump.
6
7 (Portage version: 2.2.7/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.4-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/fslurp/files/fslurp-2.1.4-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/fslurp/files/fslurp-2.1.4-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: fslurp-2.1.4-makefile.patch
16 ===================================================================
17 --- fslurp-2.1.4/Makefile
18 +++ fslurp-2.1.4/Makefile
19 @@ -51,35 +51,35 @@
20 INCLUDES = fslurp.h fronius.h
21 SIMINCLUDES = simulator.h
22
23 -DEBUGFLAGS = -g
24 -CFLAGS = -c -Wall $(DEBUGFLAGS)
25 +#DEBUGFLAGS = -g
26 +CFLAGS += -c -Wall $(DEBUGFLAGS)
27
28 -LDFLAGS = -lm
29 +LIBS = -lm
30
31 VERSION := fslurp-$(shell tail -1 version)
32
33 all: $(TARGETS)
34
35 fslurp: $(FSLURP_OBJS)
36 - $(CC) $(LDFLAGS) $^ -o $@
37 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
38
39 simSolarNet2i1s: \
40 $(SIMSOLARNET2I1S_OBJS)
41 - $(CC) $(LDFLAGS) $^ -o $@
42 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
43
44 simSolarNet1i0s: \
45 $(SIMSOLARNET1I0S_OBJS)
46 - $(CC) $(LDFLAGS) $^ -o $@
47 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
48
49 simSolarNet0i0s: \
50 $(SIMSOLARNET0I0S_OBJS)
51 - $(CC) $(LDFLAGS) $^ -o $@
52 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
53
54 simIFCEasy: $(SIMIFCEASY_OBJS)
55 - $(CC) $(LDFLAGS) $^ -o $@
56 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
57
58 sim422IGTL: $(SIM422IGTL_OBJS)
59 - $(CC) $(LDFLAGS) $^ -o $@
60 + $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
61
62 test: $(TARGETS) clean
63 ./testcase.sh