Makefile.in 562 B

123456789101112131415161718192021222324252627
  1. #
  2. # gp2x makefile generics
  3. #
  4. CC = arm-open2x-linux-gcc
  5. CXX = arm-open2x-linux-g++
  6. STRIP = arm-open2x-linux-strip --strip-unneeded
  7. OBJCOPY = arm-open2x-linux-objcopy
  8. BINEXT = .gpe
  9. #
  10. # GP2X binaries must be statically linked.
  11. #
  12. LIBPNG_LDFLAGS = $(shell libpng12-config --static --ldflags)
  13. ARCH_EXE_LDFLAGS = -static
  14. #
  15. # There's a couple of other packaged files on GP2X
  16. #
  17. build: ${build}
  18. ${RM} ${build}/${mzxrun}.debug
  19. ${CP} arch/gp2x/pad.config ${build}
  20. -@convert -scale 32x32 contrib/icons/quantump.png ${build}/mzxrun.png
  21. include arch/zip.inc