mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
removed rules.mak and outdated entries from readme.txt
svn path=/trunk/; revision=15922
This commit is contained in:
parent
f30aac562d
commit
84321058f9
2 changed files with 2 additions and 124 deletions
|
@ -1,4 +1,4 @@
|
||||||
$Id: readme.txt,v 1.5 2004/04/06 21:04:42 sedwards Exp $
|
$Id$
|
||||||
|
|
||||||
This directory contains extra applicatons for ReactOS.
|
This directory contains extra applicatons for ReactOS.
|
||||||
Make sure you also have a copy of the rest of the ReactOS
|
Make sure you also have a copy of the rest of the ReactOS
|
||||||
|
@ -7,13 +7,11 @@ source before you attempt to build anything in this module.
|
||||||
The following is a short decription of each. Check for a
|
The following is a short decription of each. Check for a
|
||||||
readme.txt under each application for more details.
|
readme.txt under each application for more details.
|
||||||
|
|
||||||
CALC : A clone of calc
|
|
||||||
CMDUTILS: External commands for CMD.
|
CMDUTILS: External commands for CMD.
|
||||||
DEVUTILS: Extra developer tools.
|
DEVUTILS: Extra developer tools.
|
||||||
DFLAT32 : Console text editor
|
DFLAT32 : Console text editor
|
||||||
GAMES : The start of the ReactOS games collection
|
GAMES : The start of the ReactOS games collection
|
||||||
MC : Midnight Commander
|
MC : Midnight Commander
|
||||||
NET : Network tools: Arp, finger, Ping, Ncftp, Telnet, etc...
|
NET : Network tools: Ncftp, etc...
|
||||||
NOTEPAD : Notepad clone.
|
|
||||||
NOTEVIL : ReactOS Coders Console Parade.
|
NOTEVIL : ReactOS Coders Console Parade.
|
||||||
SYSUTILS: System Utilities.
|
SYSUTILS: System Utilities.
|
||||||
|
|
|
@ -1,120 +0,0 @@
|
||||||
#
|
|
||||||
# Important
|
|
||||||
#
|
|
||||||
.EXPORT_ALL_VARIABLES:
|
|
||||||
|
|
||||||
#
|
|
||||||
# Select your host
|
|
||||||
#HOST = mingw32-windows
|
|
||||||
#HOST = mingw32-linux
|
|
||||||
#
|
|
||||||
|
|
||||||
# Windows is default host environment
|
|
||||||
ifeq ($(HOST),)
|
|
||||||
HOST = mingw32-windows
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(HOST),mingw32-linux)
|
|
||||||
TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
|
|
||||||
endif
|
|
||||||
|
|
||||||
W32API_PATH = $(PATH_TO_TOP)/../reactos/w32api
|
|
||||||
|
|
||||||
#
|
|
||||||
# Choose various options
|
|
||||||
#
|
|
||||||
ifeq ($(HOST),mingw32-linux)
|
|
||||||
PREFIX = mingw32-
|
|
||||||
EXE_POSTFIX =
|
|
||||||
CP = cp
|
|
||||||
DLLTOOL = $(PREFIX)dlltool --as=$(PREFIX)as
|
|
||||||
RM = rm
|
|
||||||
DOSCLI = no
|
|
||||||
FLOPPY_DIR = /mnt/floppy
|
|
||||||
# DIST_DIR should be relative from the top of the tree
|
|
||||||
DIST_DIR = dist
|
|
||||||
SEP = /
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(HOST),mingw32-windows)
|
|
||||||
PREFIX =
|
|
||||||
EXE_POSTFIX = .exe
|
|
||||||
CP = copy
|
|
||||||
DLLTOOL = $(PREFIX)dlltool --as=$(PREFIX)as
|
|
||||||
RM = del
|
|
||||||
DOSCLI = yes
|
|
||||||
FLOPPY_DIR = A:
|
|
||||||
# DIST_DIR should be relative from the top of the tree
|
|
||||||
DIST_DIR = dist
|
|
||||||
SEP = \$($EMPTY_VAR)
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Set INSTALL_DIR to default value if not already set
|
|
||||||
# ifeq ($(INSTALL_DIR),)
|
|
||||||
INSTALL_DIR = $(PATH_TO_TOP)/reactos
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#
|
|
||||||
# Create variables for all the compiler tools
|
|
||||||
#
|
|
||||||
ifeq ($(WITH_DEBUGGING),yes)
|
|
||||||
DEBUGGING_CFLAGS = -g
|
|
||||||
else
|
|
||||||
DEBUGGING_CFLAGS =
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(WARNINGS_ARE_ERRORS),yes)
|
|
||||||
EXTRA_CFLAGS = -Werror
|
|
||||||
endif
|
|
||||||
|
|
||||||
DEFINES = -DDBG
|
|
||||||
|
|
||||||
ifeq ($(WIN32_LEAN_AND_MEAN),yes)
|
|
||||||
LEAN_AND_MEAN_DEFINE = -DWIN32_LEAN_AND_MEAN
|
|
||||||
else
|
|
||||||
LEAN_AND_MEAN_DEFINE =
|
|
||||||
endif
|
|
||||||
|
|
||||||
CXX = $(PREFIX)g++
|
|
||||||
CC = $(PREFIX)gcc
|
|
||||||
NATIVE_CC = gcc
|
|
||||||
CFLAGS = \
|
|
||||||
$(BASE_CFLAGS) \
|
|
||||||
-pipe \
|
|
||||||
-O2 \
|
|
||||||
-Wall \
|
|
||||||
-Wstrict-prototypes \
|
|
||||||
-fno-builtin \
|
|
||||||
-I$(W32API_PATH)/include \
|
|
||||||
$(LEAN_AND_MEAN_DEFINE) \
|
|
||||||
$(DEFINES) \
|
|
||||||
$(DEBUGGING_CFLAGS) \
|
|
||||||
$(EXTRA_CFLAGS)
|
|
||||||
CXXFLAGS = $(CFLAGS)
|
|
||||||
LD = $(PREFIX)ld
|
|
||||||
NM = $(PREFIX)nm
|
|
||||||
OBJCOPY = $(PREFIX)objcopy
|
|
||||||
STRIP = $(PREFIX)strip
|
|
||||||
AS = $(PREFIX)gcc -c -x assembler-with-cpp
|
|
||||||
AR = $(PREFIX)ar
|
|
||||||
RC = $(PREFIX)windres
|
|
||||||
RCINC = --include-dir $(PATH_TO_TOP)/../reactos/include
|
|
||||||
TOOLS_PATH = $(PATH_TO_TOP)/../reactos/tools
|
|
||||||
RSYM = $(TOOLS_PATH)/rsym
|
|
||||||
|
|
||||||
%.o: %.cpp
|
|
||||||
$(CXX) $(CFLAGS) -c $< -o $@
|
|
||||||
%.o: %.cc
|
|
||||||
$(CXX) $(CFLAGS) -c $< -o $@
|
|
||||||
%.o: %.c
|
|
||||||
$(CC) $(CFLAGS) -c $< -o $@
|
|
||||||
%.o: %.asm
|
|
||||||
$(NASM_CMD) $(NFLAGS) $< -o $@
|
|
||||||
%.coff: %.rc
|
|
||||||
$(RC) $(RCFLAGS) $(RCINC) $< $@
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RULES_MAK_INCLUDED = 1
|
|
Loading…
Reference in a new issue