Files
harbour-core/harbour/src/macro/Makefile
Viktor Szakats 1b080a03f9 2009-10-09 16:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- source
  + src
  * src/Makefile
  * src/dynlib/mt/Makefile
  * src/dynlib/Makefile
  * INSTALL
  * Makefile
  * ChangeLog
  * harbour.spec
  * mpkg_tgz.sh
    * Renamed 'source' dir to 'src' to move closer to other FOSS 
      projects. It's also easier to type, plus it has the side 
      effect that some cmdlines will be shorter in the 
      build process.
2009-10-09 14:54:14 +00:00

44 lines
754 B
Makefile

#
# $Id$
#
ROOT := ../../
# NOTE: You can pass additional parameters that control the speed/size
# ratio of generated flex scanner. These parameters are:
#
# -Cf - fastest/biggest
# -CF
# -C - in between
# -Cm
# -Ce
# -Cem - slowest/smallest
#
# see Flex documentation for full set of switches
#LEX_FLAGS := -Phb_macro -C
#LEX_SOURCE := macro.l
#LEX_HEADERS := \
# hbsetup.h \
# hberrors.h \
# hbdefs.h \
# hbmacro.h \
#YACC_FLAGS := -p hb_macro
YACC_SOURCE := macro.y
YACC_DEPEND := macrolex.c
YACC_HEADERS := \
hbmacro.h \
hbsetup.h \
hbpcode.h \
hbdefs.h \
C_SOURCES := \
macroa.c \
macrob.c \
macrolex.c \
LIBNAME := hbmacro
include $(TOP)$(ROOT)config/lib.mk