Makefile
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. # Comment/uncomment the following line to enable/disable debugging
  2. #DEBUG = y
  3. # This Makefile has been simplified as much as possible, by putting all
  4. # generic material, independent of this specific directory, into
  5. # ../Rules.make. Read that file for details
  6. TOPDIR  := $(shell cd ..; pwd)
  7. include $(TOPDIR)/Rules.make
  8. ifeq ($(DEBUG),y)
  9.   DEBFLAGS = -O -g -DSHORT_DEBUG
  10. else
  11.   DEBFLAGS = -O2
  12. endif
  13. CFLAGS += $(DEBFLAGS) -I..
  14. OBJS = shortprint.o
  15. all: $(OBJS)
  16. install:
  17. install -d $(INSTALLDIR)
  18. install -c shortprint.o $(INSTALLDIR)
  19. clean:
  20. rm -f *.o *~ core