mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 06:05:49 -06:00
29 lines
926 B
Makefile
29 lines
926 B
Makefile
#######################################################################
|
|
#
|
|
# pgAdmin III - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
# module.mk - pgadmin/include/pgscript/ Makefile fragment
|
|
#
|
|
#######################################################################
|
|
|
|
pgadmin3_SOURCES += \
|
|
include/pgscript/location.hh \
|
|
include/pgscript/parser.tab.hh \
|
|
include/pgscript/position.hh \
|
|
include/pgscript/stack.hh \
|
|
include/pgscript/FlexLexer.h \
|
|
include/pgscript/pgsApplication.h \
|
|
include/pgscript/pgScript.h
|
|
|
|
EXTRA_DIST += \
|
|
include/pgscript/module.mk
|
|
|
|
include include/pgscript/exceptions/module.mk
|
|
include include/pgscript/expressions/module.mk
|
|
include include/pgscript/generators/module.mk
|
|
include include/pgscript/objects/module.mk
|
|
include include/pgscript/statements/module.mk
|
|
include include/pgscript/utilities/module.mk
|