updated on Fri Jan 13 20:02:10 UTC 2012
[aur-mirror.git] / biounzip / biounzip-makefile.diff
blobac2fe86b34f0fc9ae504fc078b6a2168e6f46af7
1 diff -ruB biounzip-1.1/Makefile biounzip-1.1-patched//Makefile
2 --- biounzip-1.1/Makefile 2004-09-03 06:56:18.000000000 +0200
3 +++ biounzip-1.1-patched//Makefile 2010-05-15 18:07:59.871239501 +0200
4 @@ -1,15 +1,15 @@
5 CC = gcc
6 -OPTS = -O2 -W -Wall -Wmissing-prototypes -ansi -pedantic -march=athlon-xp
7 -CFLAGS =
8 +CFLAGS += -O2 -W -Wall -Wmissing-prototypes -ansi -pedantic
9 +LDFLAGS +=
10 LIBS = -lz
11 -OBJS = biounzip.o parse.o
12 +OBJS = biounzip.o parse.o
14 all: $(OBJS)
15 - $(CC) $(OBJS) $(OPTS) -o biounzip $(LIBS)
16 + $(CC) $(OBJS) $(LDFLAGS) -o biounzip $(LIBS)
18 biounzip.o: biounzip.c
19 - $(CC) $(OPTS) -c biounzip.c
20 + $(CC) $(CFLAGS) -c biounzip.c
21 parse.o: parse.c
22 - $(CC) $(OPTS) -c parse.c
23 + $(CC) $(CFLAGS) -c parse.c
24 clean:
25 rm -f *.o biounzip *~