mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
ba0c53550f
code with Lua. Based on a "cleaned" header file, toLua automatically generates the binding code to access C/C++ features from Lua. Using Lua-5.0 API and tag method facilities, the current version automatically maps C/C++ constants, external variables, functions, namespace, classes, and methods WWW: http://www.tecgraf.puc-rio.br/~celes/tolua/
23 lines
467 B
Plaintext
23 lines
467 B
Plaintext
--- Makefile.orig Thu Jul 31 23:27:52 2003
|
|
+++ Makefile Sun Nov 21 18:50:08 2004
|
|
@@ -1,13 +1,13 @@
|
|
# makefile for tolua hierarchy
|
|
|
|
tolua:
|
|
- cd src/lib; make all
|
|
- cd src/bin; make all
|
|
+ cd src/lib; ${MAKE} all
|
|
+ cd src/bin; ${MAKE} all
|
|
|
|
tests:
|
|
- cd src/tests; make all
|
|
+ cd src/tests; ${MAKE} all
|
|
|
|
all clean klean:
|
|
- cd src/lib; make $@
|
|
- cd src/bin; make $@
|
|
- cd src/tests; make $@
|
|
+ cd src/lib; ${MAKE} $@
|
|
+ cd src/bin; ${MAKE} $@
|
|
+ cd src/tests; ${MAKE} $@
|