mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Added rule to make etags files... cheap hack right now, should be cleaned up later
svn path=/trunk/; revision=2140
This commit is contained in:
parent
1c6b3f753a
commit
933eb642dd
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $Id: makefile,v 1.37 2001/07/15 21:19:02 rex Exp $
|
# $Id: makefile,v 1.38 2001/08/02 20:22:24 phreak Exp $
|
||||||
#
|
#
|
||||||
# WIN32K.SYS build spec
|
# WIN32K.SYS build spec
|
||||||
#
|
#
|
||||||
|
@ -117,6 +117,15 @@ dist: $(DIST_DIR)/drivers/$(TARGET).sys
|
||||||
$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys
|
$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys
|
||||||
$(CP) $(TARGET).sys ../../$(DIST_DIR)/drivers/$(TARGET).sys
|
$(CP) $(TARGET).sys ../../$(DIST_DIR)/drivers/$(TARGET).sys
|
||||||
|
|
||||||
|
.dummy:
|
||||||
|
|
||||||
|
%/TAGS: .dummy
|
||||||
|
etags $(@D)/\*.c -o $(@D)/TAGS
|
||||||
|
|
||||||
|
etags: TAGS
|
||||||
|
TAGS: main/TAGS eng/TAGS ldr/TAGS misc/TAGS objects/TAGS stubs/TAGS ntuser/TAGS dib/TAGS freetype/TAGS
|
||||||
|
etags -i main/TAGS -i eng/TAGS -i ldr/TAGS -i misc/TAGS -i objects/TAGS -i stubs/TAGS -i ntuser/TAGS -i dib/TAGS -i freetype/TAGS
|
||||||
|
|
||||||
#WITH_DEBUGGING = yes
|
#WITH_DEBUGGING = yes
|
||||||
#WIN32_LEAN_AND_MEAN = yes
|
#WIN32_LEAN_AND_MEAN = yes
|
||||||
#WARNINGS_ARE_ERRORS = yes
|
#WARNINGS_ARE_ERRORS = yes
|
||||||
|
|
Loading…
Reference in a new issue