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 -DSCULLV_DEBUG # "-O" is needed to expand inlines
  10. else
  11.   DEBFLAGS = -O2
  12. endif
  13. CFLAGS += $(DEBFLAGS) -I..
  14. TARGET = scullv
  15. SRC = main.c mmap.c
  16. all: .depend $(TARGET).o
  17. $(TARGET).o: $(SRC:.c=.o)
  18. $(LD) -r $^ -o $@
  19. install:
  20. install -d $(INSTALLDIR)
  21. install -c $(TARGET).o $(INSTALLDIR)
  22. clean:
  23. rm -f *.o *~ core .depend
  24. depend .depend dep:
  25. $(CC) $(CFLAGS) -M *.c > $@
  26. ifeq (.depend,$(wildcard .depend))
  27. include .depend
  28. endif