repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
source4/TODO: Fix typo.
[Samba.git]
/
testprogs
/
win32
/
prepare_dcpromo
/
GNUmakefile
blob
1c9561398ea55a73480379e3a9aff3337f4d0a58
1
INCLUDES
=-
I.
2
CFLAGS
=$(
INCLUDES
)
3
LIBS
=-
ladvapi32
4
5
PREPARE_DCPROMO
=
prepare_dcpromo.exe
6
7
all
: $(
PREPARE_DCPROMO
)
8
9
MINGW_CC
=
i586-mingw32msvc-cc
10
CC
= $(
MINGW_CC
)
11
12
.SUFFIXES
:
.c .obj .exe
13
14
.c.obj
:
15
$(
CC
) $(
CFLAGS
) -
c
$< -
o
$
@
16
17
.obj.exe
:
18
$(
CC
) $(
CFLAGS
) -
o
$
@
$< $(
LIBS
)
19
20
clean
:
21
rm
-
f
*
~
*
.obj
*
.exe