Makefile 340 B

1234567891011121314151617
  1. SHELL=sh
  2. RCCEROOT=../..
  3. include $(RCCEROOT)/common/symbols
  4. OBJS=scc_lib_test.o $(ARCHIVE)
  5. default:
  6. @echo $(CCOMPILE)
  7. scc_lib_test: $(OBJS)
  8. $(CCOMPILE) -o scc_lib_test $(OBJS) $(CFLAGS) -I/lib/ -lrt
  9. scc_lib_test.o: scc_lib_test.c $(RCCEINCLUDE)/RCCE.h
  10. $(CCOMPILE) -c $(CFLAGS) -I/lib/ scc_lib_test.c
  11. clean:
  12. @ rm -f *.o comm_test