makefile
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. BAG=../../bin/bag
  2. SRC=test.c rexpr.c
  3. OBJ=test.o rexpr.o
  4. CFLAGS = -g
  5. test: $(OBJ) $(SRC)
  6. cc -g -o texpr $(OBJ)
  7. shar:
  8. shar makefile test.c rexpr.c rexpr.h > rexpr.shar
  9. archive:
  10. $(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
  11. clean:
  12. rm -rf *.o core texpr
  13. scrub:
  14. rm -rf *.o core texpr