diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2008-01-15 09:52:17 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2008-03-10 15:02:36 -0700 |
commit | d336df8b73661ed4124292180a8a064be04b9e0d (patch) | |
tree | 244f429e8490a5fa386b35e62d735f1066e06706 /configs | |
parent | 8aaf805b8afbde3b9faa681f29f691bec3213f4a (diff) |
glapi: Use variable for indent and flags
Put the path to indent and the flags to call it with in configs/default
rather than in the Makefile. This makes it easier to change the values
globally.
(cherry picked from commit 817af9bec2f799b4b8449112d1a25aad70ca4d15)
Diffstat (limited to 'configs')
-rw-r--r-- | configs/default | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/default b/configs/default index 56604df548..eb2eb8b7e6 100644 --- a/configs/default +++ b/configs/default @@ -30,9 +30,11 @@ MKDEP_OPTIONS = -fdepend MAKE = make INSTALL = $(TOP)/bin/minstall -# Python and flags (generally only needed by the developers) +# Tools for regenerating glapi (generally only needed by the developers) PYTHON2 = python PYTHON_FLAGS = -t -O -O +INDENT = indent +INDENT_FLAGS = -i4 -nut -br -brs -npcs -ce -T GLubyte -T GLbyte -T Bool # Library names (base name) GL_LIB = GL |