repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added truncate message, fixed return codes, backport
[AROS.git]
/
tools
/
setrev
/
Makefile
blob
57fb0b8e6573950d29ea19ef1525d71901d5eb12
1
# Copyright © 2011, The AROS Development Team. All rights reserved.
2
# $Id$
3
#
4
# Desc: Makefile for setrev
5
#
6
7
SRC
:=
setrev.c
8
9
include
$(
TOP
)/
config
/
make.cfg
10
11
all
: $(
SETREV
)
12
13
$(
SETREV
) : $(
SRC
)
14
@
$(
MECHO
)
"Compiling $(notdir $@)..."
15
@
$(
HOST_CC
) $(
HOST_CFLAGS
) $(
HOST_LDFLAGS
) $< -
o
$
@
16
@
$(
HOST_STRIP
) $
@
17
18
19
clean
:
20
@
$(
RM
) -
f
$(
SETREV
)