missing commit in generator.h
[galan.git] / plugins / Makefile.w32
blobe92a4774b6410e8035cf158ea622b253740bf298
1 # Handcrafted makefile for gAlan under win32.
3 # Note that this makefile relies on variables sent to it by the toplevel makefile.
5 plugins = osc.dll rart.dll voice.dll ctrl.dll gain.dll clock.dll vca.dll delay.dll \
6         patsel.dll trigseq.dll vcf.dll sig2evt.dll dcbias.dll resample.dll xfade.dll \
7         atan.dll evtadd.dll evtmul.dll win_output.dll seqnum.dll adsr.dll seqnote.dll \
8         pcm_out.dll reverse.dll patloop.dll random.dll vco.dll sigctrl.dll polyrart.dll \
9         smooth.dll
11 LIBS += -lwinmm -laudiofile
13 all: $(plugins) dllinit.o
15 %.dll: %.o dllinit.o
16         dllwrap -s --export-all -o $@ $< ../src/galan.lib $(LIBS) dllinit.o
18 %.o: %.c
19         gcc $(CFLAGS) $(EXTRA_DEFS) -c $<
21 clean:
22         deltree /y $(plugins) dllinit.o