Makefile 491 B

12345678910111213141516171819202122232425262728
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. all: cpio
  4. SRCS:= ib_open.c \
  5. ib_close.c \
  6. ib_read.c \
  7. ib_alloc.c \
  8. ib_free.c \
  9. ib_getlin.c \
  10. sfile.c \
  11. gmatch.c \
  12. sigset.c \
  13. memalign.c \
  14. version.c \
  15. blast.c \
  16. crc32.c \
  17. expand.c \
  18. explode.c \
  19. flags.c \
  20. inflate.c \
  21. unshrink.c \
  22. nonpax.c \
  23. cpio.c
  24. cpio: ${SRCS}
  25. $(CC) $(CFLAGS_FOR_BUILD) -D_GNU_SOURCE -I. -o $@ $^