(file) Return to Makefile CVS log (file) (dir) Up to [Pegasus] / pegasus / src / utils / mu

File: [Pegasus] / pegasus / src / utils / mu / Makefile (download)
Revision: 1.39, Tue Dec 16 18:58:12 2008 UTC (15 years, 6 months ago) by kumpf
Branch: MAIN
CVS Tags: TASK-PEP348_SCMO-root, TASK-PEP348_SCMO-merged_in_to_trunk, TASK-PEP348_SCMO-merged_in_from_branch, RELEASE_2_9_1-RC1, RELEASE_2_9_1, RELEASE_2_9_0-RC1, RELEASE_2_9_0, RELEASE_2_9-root, HPUX_TEST
Branch point for: TASK-PEP348_SCMO-branch, RELEASE_2_9-branch
Changes since 1.38: +2 -2 lines
BUG#: 8273
TITLE: Remove trailing space characters
DESCRIPTION: Remove meaningless whitespace.

#//%LICENSE////////////////////////////////////////////////////////////////
#//
#// Licensed to The Open Group (TOG) under one or more contributor license
#// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
#// this work for additional information regarding copyright ownership.
#// Each contributor licenses this file to you under the OpenPegasus Open
#// Source License; you may not use this file except in compliance with the
#// License.
#//
#// Permission is hereby granted, free of charge, to any person obtaining a
#// copy of this software and associated documentation files (the "Software"),
#// to deal in the Software without restriction, including without limitation
#// the rights to use, copy, modify, merge, publish, distribute, sublicense,
#// and/or sell copies of the Software, and to permit persons to whom the
#// Software is furnished to do so, subject to the following conditions:
#//
#// The above copyright notice and this permission notice shall be included
#// in all copies or substantial portions of the Software.
#//
#// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
#// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
#// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
#// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
#// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#//
#//////////////////////////////////////////////////////////////////////////
DIR = utils/mu
include $(PEGASUS_ROOT)/mak/config.mak

PROGRAM = mu

OBJ_DIR = .
INCLUDES = -I$(PEGASUS_ROOT)/src $(EXTRA_INCLUDES)

ifeq ($(OS_TYPE),windows)
    PLATFORM_SOURCES = FilesWindows.cpp
    # Windows linker does not allow space before pgm name
    EXE_OUTPUT = $(EXE_OUT)$(PROGRAM)$(EXE)
    DEFINES += -DOS_WINDOWS
    RM = del
    BACKWARD_SLASH = 1
    MU_EXE_LOCATION = $(subst /,\,$(BIN_DIR)\$(PROGRAM)$(EXE))
else
    PLATFORM_SOURCES = FilesUnix.cpp
    # some platforms (Mac) require space before pgm name
    EXE_OUTPUT = $(EXE_OUT) $(PROGRAM)$(EXE)
    OBJ_OUT = -o
    RM = rm -f
    MU_EXE_LOCATION = $(BIN_DIR)/$(PROGRAM)$(EXE)
endif

ifdef PEGASUS_MU_BIN_DIR
    ifdef BACKWARD_SLASH
       FULL_PROGRAM = $(PEGASUS_MU_BIN_DIR)\$(PROGRAM)$(EXE)
    else
       FULL_PROGRAM = $(PEGASUS_MU_BIN_DIR)/$(PROGRAM)$(EXE)
    endif
else
    FULL_PROGRAM = $(PROGRAM)$(EXE)
endif


SOURCES = \
    $(PLATFORM_SOURCES)     \
    DependCmd.cpp           \
    PwdCmd.cpp              \
    CompareCmd.cpp          \
    MoveCmd.cpp             \
    CopyCmd.cpp             \
    TouchCmd.cpp            \
    EchoCmd.cpp             \
    MkDirHierCmd.cpp        \
    RmDirHierCmd.cpp        \
    RmCmd.cpp               \
    Files.cpp               \
    mu.cpp                  \
    StripCmd.cpp            \
    PrependCmd.cpp          \
    SleepCmd.cpp            \
    SortCmd.cpp             \
    SrcListCmd.cpp          \
    Dependency.cpp

OBJECTS = $(SOURCES:.cpp=$(OBJ))

%$(OBJ): %.cpp
	$(CXX) -c $(OBJ_OUT)$@ $(FLAGS) $(LOCAL_DEFINES) $(DEFINES) $(SYS_INCLUDES) $(INCLUDES) $*.cpp


$(FULL_PROGRAM): $(OBJECTS)
	$(LINK_WRAPPER) $(CXX) $(FLAGS) $(EXE_OUTPUT) $(OBJECTS) $(FULL_LIBRARIES) $(SYS_LIB)
	$(MKDIRHIER) $(BIN_DIR)
	-$(RM) $(MU_EXE_LOCATION)
	$(COPY) $(FULL_PROGRAM) $(MU_EXE_LOCATION)

clean:
	$(RM) $(OBJECTS)
	$(RM) $(FULL_PROGRAM)
	-$(RM) $(MU_EXE_LOCATION)

tests:

poststarttests:

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2