NtSetInformationFile(): FileRenameInformation: Fixed missing fields
[reactos.git] / loaders / dos / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 include $(PATH_TO_TOP)/rules.mak
6
7 all: loadros.com
8
9 loadros.com: loadros.asm
10         $(NASM_CMD) -fbin -o loadros.com loadros.asm
11
12 clean:
13         - $(RM) loadros.com
14
15 .PHONY: clean
16
17 install: $(INSTALL_DIR)/loadros.com
18
19 $(INSTALL_DIR)/loadros.com: loadros.com
20         $(CP) loadros.com $(INSTALL_DIR)/loadros.com
21
22 .PHONY: install
23
24 dist: $(DIST_DIR)/loadros.com
25
26 $(DIST_DIR)/loadros.com: loadros.com
27         $(CP) loadros.com $(DIST_DIR)/loadros.com
28
29 .PHONY: dist
30
31 # EOF