Makefile
author viric@mandarina
Mon, 15 Dec 2008 23:12:54 +0000
changeset 255 ba96eda920ee
parent 1 73432b1eac4a
permissions -rw-r--r--
Diapositives refinades.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     1
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     2
%.pnm : %.png
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     3
	pngtopnm $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     4
%.pnm : %.jpg
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     5
	jpegtopnm $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     6
%.pgm : %.pnm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     7
	ppmtopgm -plain $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     8
%.pgm : %.ppm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     9
	ppmtopgm -plain $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
    10
%.sli : %.pgm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
    11
	./pgmtosli <$< > $@