]> git.pld-linux.org Git - packages/bogodisk.git/blame - bogodisk-as-needed.patch
- new
[packages/bogodisk.git] / bogodisk-as-needed.patch
CommitLineData
ca1ede7a
AG
1--- bogodisk-0.5.4/Makefile~ 2008-11-23 11:03:13.000000000 +0100
2+++ bogodisk-0.5.4/Makefile 2008-12-28 13:53:54.829553021 +0100
3@@ -1,5 +1,7 @@
4+CC=gcc
5 CFLAGS=-O2 -Wall
6-LDFLAGS=-lrt
7+LDFLAGS=
8+LIBS=-lrt
9 VERSION=0.5.4
10
11 prefix = /usr
12@@ -8,6 +10,9 @@
13
14 all: bogodisk
15
16+bogodisk: bogodisk.c
17+ $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LIBS)
18+
19 distclean: clean
20
21 clean:;
This page took 0.62548 seconds and 4 git commands to generate.