.SUFFIXES: .pd_linux 

# where is your m_pd.h ???
INCLUDE = -I/home/x/audio/sw/pd/pd-0.34-2/src 

target: gate.pd_linux 
.c.pd_linux: 
	cc -O2 -Wall -DPD -fPIC $(INCLUDE) -c $*.c 
	ld -export_dynamic  -shared -o $*.pd_linux $*.o -lc 
	strip --strip-unneeded $*.pd_linux 
clean: 
	rm *.pd_linux 
	rm *.o 
