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

嵌入式Linux

开发平台:

C/C++

  1. # This Makefile has been simplified as much as possible, by putting all
  2. # generic material, independent of this specific directory, into
  3. # ../Rules.make. Read that file for details
  4. TOPDIR  := $(shell cd ..; pwd)
  5. include $(TOPDIR)/Rules.make
  6. CFLAGS += -I.. -O
  7. OBJS = skull.o
  8. all: $(OBJS)
  9. skull.o: skull_init.o skull_clean.o
  10. $(LD) -r $^ -o $@
  11. install:
  12. install -d $(INSTALLDIR)
  13. install -c $(OBJS) $(INSTALLDIR)
  14. clean:
  15. rm -f *.o *~ core