aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-12-25 16:15:15 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:50 +0100
commit6b6a6f4331631bb4ef92a23c80e982f2a6b76109 (patch)
tree0c8c89218ba6135f2c59308af512d9fe3d7bde35 /Makefile
parentfb70fe4e1a04b6041a50da7e2e76200fb18de0f9 (diff)
downloadusdx-6b6a6f4331631bb4ef92a23c80e982f2a6b76109.tar.gz
usdx-6b6a6f4331631bb4ef92a23c80e982f2a6b76109.tar.xz
usdx-6b6a6f4331631bb4ef92a23c80e982f2a6b76109.zip
Makefile: simplified Makefile
TOP should not be needed to set anymore Makefile.inc could be included before all other
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f375a6ae..ee5c1138 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,8 @@
TARGET:=usdx
-TOP:=.
+include Makefile.inc
-headers:=$(wildcard ${TOP}/src/*.hpp)
-sources:=$(wildcard ${TOP}/src/*.cpp)
-
-include ${TOP}/Makefile.inc
+headers+=$(wildcard src/*.hpp)
+sources+=$(wildcard src/*.cpp)
##############################################################################