diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2008-01-15 09:52:17 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2008-02-12 06:43:23 -0800 |
commit | 817af9bec2f799b4b8449112d1a25aad70ca4d15 (patch) | |
tree | 7566dc741a32e937e187fab74cb4f54664d0c5c9 /configs/default | |
parent | 532828b1d3fdf5e9eed8d5ec72ada154b31f92cc (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.
Diffstat (limited to 'configs/default')
-rw-r--r-- | configs/default | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/default b/configs/default index cd998b50e2..9705d6b78c 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 |