diff options
author | Brian Paul <[email protected]> | 2002-11-08 15:35:46 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-11-08 15:35:46 +0000 |
commit | d1efbf04562be8b9fb4417ebde005532736003ea (patch) | |
tree | 57e840c3ce55182d678370be1dcec41bc9377b86 /progs/tests/Makefile | |
parent | 6e40539490082d37791bcc2678598718641918af (diff) |
implemented automatic code gen and individual function validation
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index efa4ad03ec0..f67a7c76cb1 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -11,6 +11,7 @@ LIBS = -L../lib -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lXext -lm PROGS = cva \ dinoshade \ fogcoord \ + getprocaddress \ manytex \ multipal \ projtex \ @@ -42,3 +43,11 @@ default: $(PROGS) clean: rm -f $(PROGS) rm -f *.o + + +# auto code generation +getprocaddress: getprocaddress.c getproclist.h + +getproclist.h: ../bin/APIspec getprocaddress.c getprocaddress.py + python getprocaddress.py > getproclist.h + |