Makefile.svn-base 347 B

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