diff options
Diffstat (limited to 'pix_preview/Makefile')
-rw-r--r-- | pix_preview/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pix_preview/Makefile b/pix_preview/Makefile new file mode 100644 index 0000000..0c0b38f --- /dev/null +++ b/pix_preview/Makefile @@ -0,0 +1,37 @@ +PD_DIR = /usr/src/pd-0.40-2 +GEM_DIR = /usr/src/Gem + +LIBS = -lm +GEM2PNM_VERSION = 0.6 + +GEM2PNM_DISTRO = /mnt/c/ydegoyon.free.fr/gem2pdp-$(GEM2PNM_VERSION) +GEM2PNM_TARBALL = $(GEM2PNM_DISTRO).tar.gz +# build flags + +GEM2PNM_INCLUDE = -I$(PD_DIR)/src -I. -I$(GEM_DIR)/src -I$(PD_DIR)/src +GEM2PNM_CPPFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \ + -Wall -W -Wno-unused -Wno-parentheses -Wno-switch \ + -DGEM2PNM_VERSION=\"$(GEM2PNM_VERSION)\" -g + +all: pix_preview.pd_linux + + +pix_preview.pd_linux: pix_preview.o + rm -f pix_preview.pd_linux + gcc -export_dynamic -shared -o pix_preview.pd_linux pix_preview.o $(LIBS) + +clean: + rm -f *.o + rm -f pix_preview.pd_linux + +distro: clean all + rm *.o + +.cpp.o: + g++ $(GEM2PNM_CPPFLAGS) $(GEM2PNM_INCLUDE) -o $*.o -c $*.cpp + +.c.o: + gcc $(GEM2PNM_CPPFLAGS) $(GEM2PNM_INCLUDE) -o $*.o -c $*.c + +install: + cp -f --remove-destination *.pd $(PD_DIR)/doc/5.reference |