Просмотр исходного кода

build: fix a few compilation and build errors.

legacy
Sam Hocevar sam 12 лет назад
Родитель
Сommit
3fd6702613
4 измененных файлов: 15 добавлений и 10 удалений
  1. +4
    -4
      test/Makefile.am
  2. +5
    -0
      test/Physics/Src/EasyConstraint.cpp
  3. +4
    -4
      test/math/Makefile.am
  4. +2
    -2
      tutorial/Makefile.am

+ 4
- 4
test/Makefile.am Просмотреть файл

@@ -6,10 +6,10 @@ AM_CPPFLAGS = -I$(top_srcdir)/src
bench: benchsuite$(EXEEXT)
./benchsuite$(EXEEXT)

all-local: $(noinst_PROGRAMS)
test x$(MAKE_FSELF) = xno || make_fself quad$(EXEEXT) quad.self
test x$(MAKE_FSELF) = xno || make_fself benchsuite$(EXEEXT) benchsuite.self
test x$(MAKE_FSELF) = xno || make_fself testsuite$(EXEEXT) testsuite.self
all-local: $(PROGRAMS) $(noinst_PROGRAMS)
for x in $(^:%$(EXEEXT)=%); do \
test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \
done

CLEANFILES = $(noinst_PROGRAMS:%$(EXEEXT)=%.self) \
$(noinst_PROGRAMS:%$(EXEEXT)=%.elf) \


+ 5
- 0
test/Physics/Src/EasyConstraint.cpp Просмотреть файл

@@ -1,3 +1,8 @@

#if defined HAVE_CONFIG_H
# include "config.h"
#endif

#include "../Include/LolBtPhysicsIntegration.h"
#include "../Include/LolPhysics.h"
#include "../Include/EasyConstraint.h"


+ 4
- 4
test/math/Makefile.am Просмотреть файл

@@ -1,10 +1,10 @@

AM_CPPFLAGS = -I$(top_srcdir)/src

all-local: $(noinst_PROGRAMS)
test x$(MAKE_FSELF) = xno || make_fself pi$(EXEEXT) pi.self
test x$(MAKE_FSELF) = xno || make_fself poly$(EXEEXT) poly.self
test x$(MAKE_FSELF) = xno || make_fself remez$(EXEEXT) remez.self
all-local: $(PROGRAMS) $(noinst_PROGRAMS)
for x in $(^:%$(EXEEXT)=%); do \
test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \
done

EXTRA_DIST = NEWS.txt lolremez.sln remez.vcxproj remez.vcxproj.filters



+ 2
- 2
tutorial/Makefile.am Просмотреть файл

@@ -1,8 +1,8 @@

AM_CPPFLAGS = -I$(top_srcdir)/src

all-local: $(noinst_PROGRAMS)
for x in $(noinst_PROGRAMS:%$(EXEEXT)=%); do \
all-local: $(PROGRAMS) $(noinst_PROGRAMS)
for x in $(^:%$(EXEEXT)=%); do \
test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \
done



Загрузка…
Отмена
Сохранить