|
|
|
@ -3,7 +3,7 @@ include Makefile.o.dep
|
|
|
|
|
current_path := $(shell pwd)
|
|
|
|
|
global_relative_working_dir := $(shell relative_path $(current_path) $(GLOBAL_WORKING_DIR))
|
|
|
|
|
|
|
|
|
|
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/morm/src -I$(global_relative_working_dir)/pikotools
|
|
|
|
|
winix_include_paths = -I$(global_relative_working_dir)/winix/winixd -I$(global_relative_working_dir)/ezc/src -I$(global_relative_working_dir)/tito/src -I$(global_relative_working_dir)/morm/src -I$(global_relative_working_dir)/pikotools/src
|
|
|
|
|
|
|
|
|
|
name = gallery.so
|
|
|
|
|
|
|
|
|
@ -14,7 +14,7 @@ $(name): $(o)
|
|
|
|
|
$(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(winix_include_paths) $(LDFLAGS) *.o
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
|
$(CXX) -c $(CXXFLAGS) $(winix_include_paths) $<
|
|
|
|
|
|
|
|
|
@ -29,5 +29,5 @@ clean:
|
|
|
|
|
rm -f *.o
|
|
|
|
|
rm -f *.so
|
|
|
|
|
rm -f $(name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include Makefile.dep
|
|
|
|
|