Makefile
author viric@mandarina
Fri, 12 Dec 2008 15:05:26 +0000
changeset 250 f480234b733e
parent 1 73432b1eac4a
permissions -rw-r--r--
Updating the year of the copyright.
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 <$< > $@