You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 360B

123456789101112131415
  1. # Override ARCH here or on the command line
  2. # ARCH=i386
  3. # Additionally you can supply extra compilation arguments, e.g. for x86_64
  4. # EXTRA_CFLAGS=-m32
  5. # EXTRA_ASFLAGS=--32
  6. # EXTRA_LDFLAGS=-m elf_i386
  7. ifndef ARCH
  8. ARCH:=$(shell uname -m | sed -e s,i[3456789]86,i386,)
  9. endif
  10. MAKEDEPS:=
  11. SUFFIXES:=
  12. include Config
  13. include arch/$(ARCH)/Config
  14. include Makefile.main