repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix last known 'variable set but not used' warning reported from GCC 4.6.0.
[kugel-rb.git]
/
utils
/
time-sync
/
Makefile
blob
14d4802fc40239e30ceffcf27b7c18366f8d951f
1
CFLAGS
= -
Wall
2
SRCS
=
ipod-scsi.c time-sync.c
3
OBJS
= $(
patsubst
%
.c
,%
.o
,$(
SRCS
))
4
5
all
:
time-sync
6
7
clean
:
8
rm
-
f
${
OBJS
}
time-sync
9
10
%
.o
: %
.c
11
gcc
${
CFLAGS
} -
c
-
o
$
@
$
^
12
13
time-sync
: ${
OBJS
}
14
gcc
${
CFLAGS
} -
lsgutils2
-
o
$
@
$
^
15
16
install
:
time-sync
17
cp time-sync
/
usr
/
local
/
bin
/