Files
harbour-core/harbour/source/compiler/Makefile
Przemyslaw Czerpak d83d51d6b9 2009-01-29 22:50 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/rules.cf
  * harbour/config/dos/bcc16.cf
    ! fixed wrong automatic macros $? was used instead of $<

  * harbour/config/dir.cf
    * optional new DIR_RULE setting for easier testing

  * harbour/config/c.cf
    + added support for setting dependencies for files which needs
      grammar header files generated by bison (YACC_DEPEND)

  * harbour/source/macro/Makefile
    * marked macrolex.c as YACC_DEPEND dependent

  * harbour/source/compiler/Makefile
    * marked complex.c as YACC_DEPEND dependent
2009-01-29 21:47:10 +00:00

55 lines
675 B
Makefile

#
# $Id$
#
ROOT = ../../
#LEX_FLAGS = -Phb_comp -C
#LEX_SOURCE=harbour.l
#LEX_HEADERS=\
# hbsetup.h \
# hberrors.h \
# hbdefs.h \
#YACC_FLAGS = -p hb_comp
YACC_SOURCE=harbour.y
YACC_DEPEND=complex.c
YACC_HEADERS=\
hbcomp.h \
hbcompdf.h \
hbsetup.h \
hbpcode.h \
hbdefs.h \
hberrors.h \
hbpp.h \
C_SOURCES=\
cmdcheck.c \
genc.c \
gencc.c \
gencobj.c \
genhrb.c \
hbcmplib.c \
hbcomp.c \
hbdbginf.c \
hbfunchk.c \
hbgenerr.c \
hbpcode.c \
hbfix.c \
hbdead.c \
hblbl.c \
hbopt.c \
hbstripl.c \
hbusage.c \
hbident.c \
ppcomp.c \
expropta.c \
exproptb.c \
complex.c \
compi18n.c \
hbmain.c \
LIBNAME=hbcplr
include $(TOP)$(ROOT)config/lib.cf