Skip to content

Commit 4e22cc1

Browse files
committed
updated Makefile for package
1 parent c10cac0 commit 4e22cc1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#############################################################################
22
# OpenNI makefile.
3-
#
3+
#
44
# default configuration is Release. for a debug version use:
55
# make CFG=Debug
66
#
@@ -41,14 +41,14 @@ ALL_DRIVERS = \
4141

4242
# list all wrappers
4343
ALL_WRAPPERS = \
44-
Wrappers/java/OpenNI.jni \
45-
Wrappers/java/OpenNI.java
44+
Wrappers/java/jni \
45+
Wrappers/java/
4646

4747
# list all tools
4848
ALL_TOOLS = \
4949
Source/Drivers/PS1080/PS1080Console \
5050
Source/Drivers/PSLink/PSLinkConsole
51-
51+
5252
# list all core projects
5353
ALL_CORE_PROJS = \
5454
$(XNLIB) \
@@ -64,11 +64,11 @@ CORE_SAMPLES = \
6464
Samples/EventBasedRead \
6565
Samples/MultipleStreamRead \
6666
Samples/MWClosestPoint \
67-
Samples/MWClosestPointApp
67+
Samples/MWClosestPointApp
6868

6969
# list all java samples
7070
JAVA_SAMPLES = \
71-
Samples/SimpleViewer.java
71+
Samples/SimpleViewer.java
7272

7373
ifeq "$(GLUT_SUPPORTED)" "1"
7474
ALL_TOOLS += \
@@ -80,7 +80,7 @@ ifeq "$(GLUT_SUPPORTED)" "1"
8080
Samples/ClosestPointViewer
8181
else
8282
ifeq "$(GLES_SUPPORTED)" "1"
83-
CORE_SAMPLES +=
83+
CORE_SAMPLES +=
8484
endif
8585
endif
8686

@@ -100,10 +100,10 @@ ALL_PROJS_CLEAN = $(foreach proj,$(ALL_PROJS),$(proj)-clean)
100100

101101
# define a function which creates a target for each proj
102102
define CREATE_PROJ_TARGET
103-
$1:
103+
$1:
104104
$$(MAKE) -C $1
105105

106-
$1-clean:
106+
$1-clean:
107107
$$(MAKE) -C $1 clean
108108
endef
109109

@@ -152,7 +152,7 @@ $(FINAL_DIR):
152152
doc:
153153
Source/Documentation/Runme.py
154154
rm -f Source/Documentation/html/*.md5
155-
155+
156156
release: | all doc $(FINAL_DIR)
157157
Packaging/Harvest.py Packaging/$(PRODUCT_STRING) $(PLATFORM)
158158
cd Packaging; tar -cjf Final/$(PRODUCT_STRING).tar.bz2 $(PRODUCT_STRING)

0 commit comments

Comments
 (0)