/usr/share/doc/libcsnd6-java/examples/Makefile is in libcsnd6-java 1:6.10.0~dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | all: CSDPlayer.jar CsoundEditor.jar
CSDPlayer.jar: CSDPlayer.java CSDPlayer.mf
-rm -r *.class csnd6/*
-rmdir csnd6
javac -classpath ../../csnd6.jar $<
jar xf ../../csnd6.jar csnd6
jar cfm $@ CSDPlayer.mf csnd6 *.class
jar i $@
-rm -r *.class csnd6/*
-rmdir csnd6
CsoundEditor.jar: CsoundEditor.java CsoundEditor.mf
-rm -r *.class csnd6/*
-rmdir csnd6
javac -classpath ../../csnd6.jar $<
jar xf ../../csnd6.jar csnd6
jar cfm $@ CsoundEditor.mf csnd6 *.class
jar i $@
-rm -r *.class csnd6/*
-rmdir csnd6
clean:
-rm *.jar *.class csnd6/*
-rmdir csnd6
|