Makefile 440 B

1234567891011121314151617181920
  1. SHELL=sh
  2. RCCEROOT=../..
  3. include $(RCCEROOT)/common/symbols
  4. CACHEABLEOBJS=RCCE_test_cacheable.o $(ARCHIVE)
  5. default:
  6. @echo "Usage: make test_cacheable "
  7. @echo " make clean"
  8. test_cacheable: $(CACHEABLEOBJS)
  9. $(CCOMPILE) -o test_cacheable $(CACHEABLEOBJS) $(CFLAGS)
  10. RCCE_test_cacheable.o: RCCE_test_cacheable.c $(RCCEINCLUDE)/RCCE.h Makefile
  11. $(CCOMPILE) -c $(CFLAGS) RCCE_test_cacheable.c
  12. clean:
  13. @ rm -f *.o test_cacheable