]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/scripts/Makefile
Restore win32 dir from Branch-5.2 and update it
[bacula/bacula] / bacula / src / win32 / scripts / Makefile
1 #
2 # Makefile for win32 bacula executables
3 # Using MinGW cross-compiler on GNU/Linux
4 #
5 #  Written by Robert Nelson, June 2006
6 #
7
8 include ../Makefile.inc
9
10 ##########################################################################
11
12 BSLEEP_OBJS = \
13         $(OBJDIR)/bsleep.o
14
15 ALL_OBJS = \
16         $(BSLEEP_OBJS)
17
18 ######################################################################
19
20 # Targets
21
22 .PHONY: all clean
23
24 all:    $(BINDIR)/bsleep.exe
25
26 clean:
27         @echo "Cleaning `pwd`"
28         $(call clean_obj,$(ALL_OBJS))
29         $(call clean_exe,$(BINDIR)/bsleep.exe)
30         $(ECHO_CMD)rm -rf $(OBJDIRS)
31
32 #
33 # Rules
34 #
35
36 $(BINDIR)/bsleep.exe: $(BSLEEP_OBJS)
37         $(call link_conapp)
38
39 include ../Makefile.rules