repo.or.cz
/
msysgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Installer: Make it easier to compile the script from the IDE
[msysgit.git]
/
src
/
WhoUses
/
Makefile
blob
537e1fac605a46f8a4a3912faab51bcac67c506d
1
TARGET
=
WhoUses.exe
2
3
OBJECTS
=
WhoUses.o SystemInfo.o
4
5
all
: $(
TARGET
)
6
7
$(
TARGET
): $(
OBJECTS
)
8
$(
CXX
) $(
CXXFLAGS
) -
o
$
@
$
^
9
10
SystemInfo.o
:
SystemInfo.
cpp
SystemInfo.h
11
12
%
.o
: %
.
cpp
13
$(
CXX
) $(
CXXFLAGS
) -
c
-
o
$
@
$<
14
15
clean
:
16
rm
$(
OBJECTS
) $(
TARGET
)