bad.icc 310 B

123456789101112131415161718192021
  1. SHELL = /bin/sh
  2. CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include
  3. testcms.o: testcms.c
  4. testcms: testcms.o ../src/liblcms.a
  5. $(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm
  6. all: testcms test
  7. test: testcms
  8. ./testcms
  9. install:
  10. # Nothing to install
  11. clean:
  12. -rm testcms.o testcms testcms.exe