lv2 tweaks, add set dft transition, zoom fix, fs test_filter fix
[goodguy/history.git] / cinelerra-5.1 / cinelerra / Makefile
index 4af6b1a17eca753403ac3905b676472ce9f67f9d..67e14e8a751f70e442de6959ba12b4dc1b9fac5b 100644 (file)
@@ -224,6 +224,7 @@ OBJS = \
        $(OBJDIR)/pluginclient.o \
        $(OBJDIR)/plugindialog.o \
        $(OBJDIR)/pluginfclient.o \
+       $(OBJDIR)/pluginlv2.o \
        $(OBJDIR)/pluginlv2config.o \
        $(OBJDIR)/pluginlv2client.o \
        $(OBJDIR)/pluginlv2gui.o \
@@ -375,11 +376,12 @@ CUTLIBS = \
 BDWRITE = $(OBJDIR)/bdwrite
 BDWOBJS = $(OBJDIR)/bdwrite.o
 
-ifneq ($(WANT_LV2UI),no)
+ifneq ($(WANT_LV2),no)
 LV2UI = $(OBJDIR)/lv2ui
 LV2OBJS = \
        $(OBJDIR)/lv2ui.o \
-       $(OBJDIR)/pluginlv2gui.o \
+       $(OBJDIR)/pluginlv2.o \
+       $(OBJDIR)/pluginlv2ui.o \
        $(OBJDIR)/pluginlv2config.o \
        $(OBJDIR)/forkbase.o
 endif
@@ -478,11 +480,13 @@ $(OBJDIR)/sha1.o: sha1.C sha1.h
        $(CXX) `cat $(OBJDIR)/c_flags` -O3 -c $< -o $@
 
 #lv2
-ifneq ($(WANT_LV2UI),no)
+ifneq ($(WANT_LV2),no)
 GTK2_INCS := `pkg-config --cflags gtk+-2.0`
 GTK2_LIBS := `pkg-config --libs gtk+-2.0`
 
+$(OBJDIR)/pluginlv2ui.o:       pluginlv2ui.C
 $(OBJDIR)/lv2ui.o:     lv2ui.C
+$(OBJDIR)/pluginlv2ui.o $(OBJDIR)/lv2ui.o:
        $(CXX) `cat $(OBJDIR)/c_flags` $(GTK2_INCS) -DMSGQUAL=$* -c $< -o $@
 
 $(OBJDIR)/lv2ui: $(LV2OBJS)
@@ -496,6 +500,7 @@ lv2ui:      $(LV2UI)
 
 install-lv2ui:
        cp -av $(LV2UI) $(BINDIR)/.
+
 install:       install-lv2ui
 endif