reactos/rosapps/sysutils/regexpl/Makefile
Nedko Arnaudov f765c59019 Use build helpers from /reactos/tools/
svn path=/trunk/; revision=12807
2005-01-04 23:36:14 +00:00

59 lines
1.1 KiB
Makefile

# $Id$
#
# ReactOS makefile for RegExpl
#
PATH_TO_TOP := ../../../reactos
TARGET_TYPE = program
TARGET_APPTYPE = console
TARGET_NAME = regexpl
TARGET_OBJECTS = \
ArgumentParser.o \
Console.o \
RegistryExplorer.o \
RegistryKey.o \
RegistryTree.o \
SecurityDescriptor.o \
ShellCommand.o \
ShellCommandChangeKey.o \
ShellCommandConnect.o \
ShellCommandDACL.o \
ShellCommandDeleteKey.o \
ShellCommandDeleteValue.o \
ShellCommandDir.o \
ShellCommandExit.o \
ShellCommandHelp.o \
ShellCommandNewKey.o \
ShellCommandOwner.o \
ShellCommandSACL.o \
ShellCommandSetValue.o \
ShellCommandValue.o \
ShellCommandVersion.o \
ShellCommandsLinkedList.o \
CrtSupplement.o \
TextHistory.o \
Completion.o \
Pattern.o \
Settings.o \
Prompt.o
TARGET_CFLAGS = -Wall -Werror -D__USE_W32API -DUNICODE -D_UNICODE -I./
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# C++ code should be linked with c++ aware linker (g++)
LD_CC = $(CXX)
# Automatic dependency tracking
DEP_OBJECTS := $(TARGET_OBJECTS)
include $(PATH_TO_TOP)/tools/depend.mk
# EOF