]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/scripts/Makefile
kes Add context menu for floating a window.
[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
31 #
32 # Rules
33 #
34
35 $(BINDIR)/bsleep.exe: $(BSLEEP_OBJS)
36         $(call link_conapp)
37
38 include ../Makefile.rules