diff options
Diffstat (limited to 'pdp_1394L/Makefile')
-rw-r--r-- | pdp_1394L/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pdp_1394L/Makefile b/pdp_1394L/Makefile new file mode 100644 index 0000000..e87d528 --- /dev/null +++ b/pdp_1394L/Makefile @@ -0,0 +1,14 @@ +current: all + +include Makefile.config + +PDP_MOD = pdp_1394L.o + +all: $(PDP_MOD) + $(CC) -export_dynamic -shared -o pdp_1394L.pd_linux *.o $(PDP_LIBS) + +clean: + rm -f *~ + rm -f *.o + rm -f *.pd_linux + |