/support/testing/posix_compat_test/Makefile

http://macfuse.googlecode.com/ · Makefile · 15 lines · 10 code · 5 blank · 0 comment · 0 complexity · 9e65095406284dbb9063a2afbd614d09 MD5 · raw file

  1. CC_COMPILE = g++ -g -O0
  2. OBJECTS = \
  3. posix_compat_test.o
  4. all: posix_compat_test
  5. posix_compat_test: $(OBJECTS)
  6. g++ -g -O0 -o $@ $(OBJECTS)
  7. clean:
  8. rm -f posix_compat_test *.o
  9. %.o :: %.cc
  10. $(CC_COMPILE) -c -o $@ $<