/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
- CC_COMPILE = g++ -g -O0
- OBJECTS = \
- posix_compat_test.o
- all: posix_compat_test
- posix_compat_test: $(OBJECTS)
- g++ -g -O0 -o $@ $(OBJECTS)
- clean:
- rm -f posix_compat_test *.o
- %.o :: %.cc
- $(CC_COMPILE) -c -o $@ $<