mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Added ntoskrnl.sym to install rule.
svn path=/trunk/; revision=2539
This commit is contained in:
parent
63546989b5
commit
57bf0a56e5
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $Id: Makefile,v 1.63 2002/01/04 13:09:36 ekohl Exp $
|
# $Id: Makefile,v 1.64 2002/01/21 22:34:36 hbirr Exp $
|
||||||
#
|
#
|
||||||
# ReactOS Operating System
|
# ReactOS Operating System
|
||||||
#
|
#
|
||||||
|
@ -635,11 +635,14 @@ clean:
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
install: all $(INSTALL_DIR)/system32/$(TARGETNAME).exe
|
install: all $(INSTALL_DIR)/system32/$(TARGETNAME).exe $(INSTALL_DIR)/symbols/$(TARGETNAME).sym
|
||||||
|
|
||||||
$(INSTALL_DIR)/system32/$(TARGETNAME).exe: $(TARGETNAME).exe
|
$(INSTALL_DIR)/system32/$(TARGETNAME).exe: $(TARGETNAME).exe
|
||||||
$(CP) $(TARGETNAME).exe $(INSTALL_DIR)/system32/$(TARGETNAME).exe
|
$(CP) $(TARGETNAME).exe $(INSTALL_DIR)/system32/$(TARGETNAME).exe
|
||||||
|
|
||||||
|
$(INSTALL_DIR)/symbols/$(TARGETNAME).sym: $(TARGETNAME).sym
|
||||||
|
$(CP) $(TARGETNAME).sym $(INSTALL_DIR)/symbols/$(TARGETNAME).sym
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
|
|
||||||
dist: $(DIST_DIR)/$(TARGETNAME).exe
|
dist: $(DIST_DIR)/$(TARGETNAME).exe
|
||||||
|
|
Loading…
Reference in a new issue