]> git.pld-linux.org Git - packages/XCounter.git/blob - XCounter-make.patch
- tabs in preamble
[packages/XCounter.git] / XCounter-make.patch
1 diff -ruN XCounter-1.0.6/Makefile XCounter-1.0.6-stare/Makefile
2 --- XCounter-1.0.6/Makefile     Sun May  5 07:43:53 2002
3 +++ XCounter-1.0.6-stare/Makefile       Mon May  6 13:26:16 2002
4 @@ -3,7 +3,7 @@
5  FLAGS = -O2
6  OBJS =  XCounter.o XCounterData.o
7  INCLUDES = -I/usr/X11R6/include -I/usr/X11R6/share/include
8 -
9 +BINDIR = /usr/bin
10  all:: clean XCounter
11  
12  .c.o:
13 @@ -20,7 +20,7 @@
14         rm -f *~
15  
16  install:: XCounter
17 -       install -s -g root -o root -m 755 XCounter /usr/local/bin/
18 +       install -D XCounter $(BINDIR)/XCounter
19  
20  uninstall:: XCounter
21         rm -f /usr/local/bin/XCounter
22 --- XCounter-1.0.6.orig/Makefile        2006-05-13 22:51:41.000000000 +0200
23 +++ XCounter-1.0.6/Makefile     2006-05-13 22:52:02.000000000 +0200
24 @@ -7,10 +7,10 @@
25  all:: clean XCounter
26  
27  .c.o:
28 -       gcc $(INCLUDES) $(FLAGS) -c -Wall $< -o $*.o
29 +       $(CC) $(INCLUDES) $(FLAGS) -c -Wall $< -o $*.o
30  
31  XCounter: $(OBJS)
32 -       gcc $(FLAGS) -o XCounter $^ $(LIBDIR) $(LIBS)
33 +       $(CC) $(FLAGS) -o XCounter $^ $(LIBDIR) $(LIBS)
34  
35  clean::
36         for i in $(OBJS) ; do \
This page took 0.054172 seconds and 3 git commands to generate.