* src/macro/Makefile
- src/macro/macro.l
* src/compiler/Makefile
- src/compiler/harbour.l
- src/compiler/fixflex.c
* INSTALL
* config/c.mk
* config/rules.mk
* Deleted references to Flex and related files.
Flex is not used since long. It couldn't generate MT safe lexer code.
24 lines
297 B
Makefile
24 lines
297 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
#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
|