The windows shell doesn't like commands that start ../ Those commands are all found using TOOLS, so by making that an absolute path we fix that problem. However GNUmake doesn't recognize targets with relative paths as being the same as their absolute path, so we have to fix up some places that were using TOOLS in dependencies.
22 lines
969 B
Plaintext
22 lines
969 B
Plaintext
#*************************************************************************
|
|
# Copyright (c) 2010 Brookhaven Science Associates, as Operator of
|
|
# Brookhaven National Lab.
|
|
# Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#************************************************************************
|
|
|
|
# This is a Makefile fragment, see src/libCom/Makefile.
|
|
|
|
# Extra rule since asLib_lex.c is included by asLib.c
|
|
asLib$(DEP): asLib_lex.c
|
|
asLib.c: asLib_lex.c
|
|
|
|
# Ensure that lexer and parser are built before they are needed
|
|
asLib.c: $(EPICS_BASE_HOST_BIN)/antelope$(HOSTEXE)
|
|
asLib_lex.c: $(EPICS_BASE_HOST_BIN)/e_flex$(HOSTEXE)
|
|
asLib_lex.c: $(INSTALL_INCLUDE)/flex.skel.static
|