33 lines
308 B
Makefile
33 lines
308 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
YACC_SOURCE=harbour.y
|
|
|
|
YACC_HEADERS=\
|
|
compiler.h \
|
|
hbsetup.h \
|
|
pcode.h \
|
|
hbdefs.h \
|
|
hberrors.h \
|
|
hbpp.h
|
|
|
|
LEX_SOURCE=harbour.l
|
|
|
|
LEX_HEADERS=\
|
|
hbsetup.h \
|
|
hberrors.h \
|
|
hbdefs.h
|
|
|
|
C_SOURCES=\
|
|
genobj32.c \
|
|
|
|
C_MAIN=harbour.c
|
|
|
|
LIBS=\
|
|
hbpp \
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|