added patch submitted by Guido de Jong

svn path=/trunk/; revision=3483
This commit is contained in:
Steven Edwards 2002-09-09 22:49:00 +00:00
parent f17812383d
commit a0797d5f25
4 changed files with 19 additions and 13 deletions

View file

@ -2,6 +2,8 @@
# ReactOS cmdutils makefile # ReactOS cmdutils makefile
# #
PATH_TO_TOP=..
TARGET=more.exe tee.exe y.exe TARGET=more.exe tee.exe y.exe
all: $(TARGET) all: $(TARGET)
@ -39,13 +41,14 @@ else
endif endif
dist: $(TARGET:%=../$(DIST_DIR)/apps/%) dist: $(TARGET:%=$(PATH_TO_TOP)/$(DIST_DIR)/apps/%)
$(TARGET:%=../$(DIST_DIR)/apps/%): ../$(DIST_DIR)/apps/%: % $(TARGET:%=$(PATH_TO_TOP)/$(DIST_DIR)/apps/%): $(PATH_TO_TOP)/$(DIST_DIR)/apps/%: %
ifeq ($(DOSCLI),yes) ifeq ($(DOSCLI),yes)
$(CP) $* ..\$(DIST_DIR)\apps\$* $(CP) $* $(PATH_TO_TOP)\$(DIST_DIR)\apps\$*
else else
$(CP) $* ../$(DIST_DIR)/apps/$* $(CP) $* $(PATH_TO_TOP)/$(DIST_DIR)/apps/$*
endif endif
include ../rules.mak include $(PATH_TO_TOP)/rules.mak

View file

@ -2,6 +2,8 @@
# ReactOS makefile for D-Flat/32 # ReactOS makefile for D-Flat/32
# #
PATH_TO_TOP=..
TARGET=edit.exe TARGET=edit.exe
all: $(TARGET) all: $(TARGET)
@ -40,18 +42,18 @@ else
endif endif
dist: $(TARGET:%=../$(DIST_DIR)/apps/%) dist: $(TARGET:%=$(PATH_TO_TOP)/$(DIST_DIR)/apps/%)
$(TARGET:%=../$(DIST_DIR)/apps/%): ../$(DIST_DIR)/apps/%: % $(TARGET:%=../$(DIST_DIR)/apps/%): $(PATH_TO_TOP)/$(DIST_DIR)/apps/%: %
ifeq ($(DOSCLI),yes) ifeq ($(DOSCLI),yes)
$(CP) $* ..\$(DIST_DIR)\apps\$* $(CP) $* $(PATH_TO_TOP)\$(DIST_DIR)\apps\$*
else else
$(CP) $* ../$(DIST_DIR)/apps\$* $(CP) $* $(PATH_TO_TOP)/$(DIST_DIR)/apps\$*
endif endif
#WITH_DEBUGGING=yes #WITH_DEBUGGING=yes
include ../rules.mak include $(PATH_TO_TOP)/rules.mak
# EOF # EOF

View file

@ -1,4 +1,4 @@
/* $Id: ph.h,v 1.3 2001/01/13 23:54:40 narnaoud Exp $ */ /* $Id: ph.h,v 1.4 2002/09/09 22:48:03 sedwards Exp $ */
// ph.h : include file for standard system include files, // ph.h : include file for standard system include files,
// or project specific include files that are used frequently, but // or project specific include files that are used frequently, but
@ -18,7 +18,7 @@
#define _DEBUG #define _DEBUG
#endif #endif
#include <TCHAR.H> #include <tchar.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -36,4 +36,5 @@ BEGIN
END END
END END
GPL LICENSE "..\\..\\copying" GPL LICENSE "../../copying"