source: vendor/current/testprogs/win32/prepare_dcpromo/GNUmakefile@ 740

Last change on this file since 740 was 740, checked in by Silvan Scherrer, 12 years ago

Samba Server: update vendor to 3.6.0

File size: 320 bytes
Line 
1INCLUDES=-I.
2CFLAGS=$(INCLUDES)
3LIBS=-ladvapi32
4
5PREPARE_DCPROMO = prepare_dcpromo.exe
6
7all: $(PREPARE_DCPROMO)
8
9MINGW_CC = i586-mingw32msvc-cc
10CC = $(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
20clean:
21 rm -f *~ *.obj *.exe
Note: See TracBrowser for help on using the repository browser.