diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2015-03-30 08:12:41 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2015-03-30 08:12:41 +0200 |
commit | 954e0d148d2e6cc0d0e8d57cb8d4d1e8fc197103 (patch) | |
tree | 8a9e2c55c6daf99b6c5a69c4d6b1f9de6259c42a /Makefile.inc | |
parent | bcd836eb265cb5e44aeac6a343342f7b372056c6 (diff) | |
download | usdx-954e0d148d2e6cc0d0e8d57cb8d4d1e8fc197103.tar.gz usdx-954e0d148d2e6cc0d0e8d57cb8d4d1e8fc197103.tar.xz usdx-954e0d148d2e6cc0d0e8d57cb8d4d1e8fc197103.zip |
Remove plain makefiles. Use cmake.
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Makefile.inc b/Makefile.inc deleted file mode 100644 index 6d4fb05a..00000000 --- a/Makefile.inc +++ /dev/null @@ -1,30 +0,0 @@ -# -*- mode: makefile -*- -TOP:=$(dir $(lastword $(MAKEFILE_LIST))) - -headers+=$(wildcard $(TOP)src/*/*.hpp) $(wildcard $(TOP)src/*/*/*.hpp) -sources+=$(wildcard $(TOP)src/*/*.cpp) $(wildcard $(TOP)src/*/*/*.cpp) - -deps=$(sources:.cpp=.d) -objects=$(sources:.cpp=.o) - -# APPS -PKG_CONFIG:=pkg-config -LOG4CPP_CONFIG:=log4cpp-config - -# CFLAGS -PEDENTIC:=-Wall -Werror -DEBUG:=-g -INC_PATH:=-I$(TOP)src/ -FTGL_CFLAGS:=$(shell $(PKG_CONFIG) ftgl --cflags) - -# LDFLAGS -SQLITE_LDFLAGS:=-lsqlite3 -LOG4CPP_LDFLAGS:=$(shell $(LOG4CPP_CONFIG) --libs) -BOOST_LDFLAGS:=-lboost_program_options-mt -lboost_filesystem-mt -lboost_thread-mt -lboost_system-mt -SDL_LDFLAGS:=-lSDL -lSDL_image -lSDL_gfx -GL_LDFLAGS:=-lGL -FTGL_LDFLAGS:=$(shell $(PKG_CONFIG) ftgl --libs) - - -CXXFLAGS:=$(PEDENTIC) $(INC_PATH) $(DEBUG) $(FTGL_CFLAGS) -LDFLAGS:=$(SQLITE_LDFLAGS) $(LOG4CPP_LDFLAGS) $(BOOST_LDFLAGS) $(SDL_LDFLAGS) $(GL_LDFLAGS) $(FTGL_LDFLAGS) |