Copy w32api from trunk
[reactos.git] / reactos / boot / freeldr / install / Makefile
1 #
2 # FreeLoader
3 # Copyright (C) 1999, 2000, 2001 Brian Palmer <brianp@sginet.com>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 #
19
20 PATH_TO_TOP = ../../..
21
22 include ../rules.mak
23
24 FLAGS = -Wall
25
26 OBJS = install.o volume.o
27
28 LIBS = -lkernel32
29
30 .PHONY : clean
31
32 all: ../bootsect/fat.h ../bootsect/fat32.h install.exe
33
34 ../bootsect/fat.h ../bootsect/fat32.h :
35 @$(MAKE) --no-print-directory -C ../bootsect
36
37 install.exe: $(OBJS)
38 @echo freeldr: LINKING install
39 $(CC) $(FLAGS) -o install.exe $(OBJS)
40
41 install.o: install.c install.h volume.h
42 @echo freeldr: Compiling $*
43 $(CC) $(FLAGS) -o install.o -c install.c
44
45 volume.o: volume.c volume.h install.h
46 @echo freeldr: Compiling $*
47 $(CC) $(FLAGS) -o volume.o -c volume.c
48
49 clean:
50 @-$(RM) *.o
51 @-$(RM) *.exe
52 @echo freeldr: Clean ALL done.