diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2009-03-27 15:30:55 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2009-03-27 15:30:55 +0000 |
commit | 178de0871d690556af74f3768c11bc812b07f347 (patch) | |
tree | a939c31adc90d6207848effaec87dd78ec00e658 /Build/source/texk/web2c/luatexdir/luaprofiler/Makefile | |
parent | 4865b23b5199697829e4e6633f2f697b4634c462 (diff) |
Import of luatex 0.37.0 (autoreconf has not been run yet!)
git-svn-id: svn://tug.org/texlive/trunk@12529 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luaprofiler/Makefile')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luaprofiler/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luaprofiler/Makefile b/Build/source/texk/web2c/luatexdir/luaprofiler/Makefile new file mode 100644 index 00000000000..57ccbfd165f --- /dev/null +++ b/Build/source/texk/web2c/luatexdir/luaprofiler/Makefile @@ -0,0 +1,19 @@ + +srcdir=../../../src/libs/luaprofiler + +OBJS= clocks.o \ + core_profiler.o \ + function_meter.o \ + stack.o \ + lua50_profiler.o + + +profiler: $(OBJS) + ar cru libprofiler.a $(OBJS) + ranlib libprofiler.a + +clean: + rm -f $(OBJS) libprofiler.a + +%.o: $(srcdir)/%.c + $(CC) -c -I../../../src/libs/lua51 $< $(CFLAGS) -o $@ |