]> git.pld-linux.org Git - packages/axel.git/blob - axel-Makefile.patch
- cosmetics
[packages/axel.git] / axel-Makefile.patch
1 --- axel-0.98/Makefile.orig     Sat Nov  3 19:28:39 2001
2 +++ axel-0.98/Makefile  Tue Nov  6 11:32:21 2001
3 @@ -12,6 +12,8 @@
4  
5  include Makefile.settings
6  
7 +CC=gcc
8 +
9  ifdef DEBUG
10  CFLAGS = -DDEBUG -g
11  else
12 @@ -60,17 +62,10 @@
13  ### MAIN PROGRAM
14  
15  axel: axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o
16 -       gcc axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o -o axel $(LFLAGS)
17 -ifndef DEBUG
18 -ifeq ($(HOSTTYPE),Darwin)
19 -       strip axel
20 -else
21 -       strip -R .comment -R .note -s axel
22 -endif
23 -endif
24 +       $(CC) axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o -o axel $(LFLAGS)
25  
26  .c.o:
27 -       gcc -c $*.c -o $*.o -Wall $(CFLAGS)
28 +       $(CC) -c $*.c -o $*.o -Wall $(CFLAGS)
29  
30  install-bin:
31         mkdir -p $(DESTDIR)$(BINDIR)/
This page took 0.17513 seconds and 3 git commands to generate.