-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
33 lines (33 loc) · 923 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Installation directory.
INSTDIR = $(HOME)/Library/Preferences/houdini/16.0
# List of C++ source files to build.
# SOP_Main.C registers the operators and handles the DSO-specifics.
SOURCES = \
./SOP_Neutron.C \
./GUI_Neutron.C \
./utility_Neutron.C
# Icons for custom node operators.
# ICONS = \
# SOP_cone.svg \
# SOP_wave.svg \
# SOP_cut.svg \
# SOP_bend.svg
# Use the highest optimization level.
OPTIMIZER = -O3
# Additional include directories.
INCDIRS = -I/usr/local/include/
# INCDIRS = \
# -I/opt/studio/sdk/include \
# -I/opt/studio/third_party/sdk/include
# Additional library directories.
# LIBDIRS = \
# -L/opt/studio/sdk/lib \
# -L/opt/studio/third_party/sdk/lib
# Additional libraries.
# LIBS = \
# -lstudioSDK \
# -lthird_partySDK
# Set the plugin library name.
DSONAME = Neutron.dylib
# Include the GNU Makefile.
include $(HFS)/toolkit/makefiles/Makefile.gnu