Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Makefile.am 867 B

12345678910111213141516171819202122232425262728
  1. include $(top_srcdir)/build/autotools/common.am
  2. noinst_LIBRARIES = liblol-bullet.a liblol-lua.a
  3. # Only remove flags that were actually set, because we don't know
  4. # what the compiler actually accepts.
  5. disable_cflags = $(filter $(AM_CPPFLAGS:-W%=-Wno-%), \
  6. -Wno-shadow -Wno-unused -Wno-cast-qual -Wno-strict-aliasing)
  7. liblol_bullet_a_SOURCES = $(bullet_sources)
  8. liblol_bullet_a_CPPFLAGS = -DB3_USE_CLEW $(AM_CPPFLAGS) -I$(srcdir)/bullet3/src $(disable_cflags)
  9. include lol-bullet.am
  10. liblol_lua_a_SOURCES = $(lua_sources)
  11. liblol_lua_a_CPPFLAGS = $(AM_CPPFLAGS) -DLUA_ANSI
  12. include lol-lua.am
  13. EXTRA_DIST += $(imgui_sources) $(mingw_std_threads_sources) $(pegtl_sources)
  14. EXTRA_DIST += lol-bullet.vcxproj lol-bullet.vcxproj.filters
  15. EXTRA_DIST += lol-lua.vcxproj lol-lua.vcxproj.filters
  16. include lol-imgui.am
  17. include lol-mingw-std-threads.am
  18. include lol-pegtl.am