common.mk 180 B

1234567891011
  1. # This Makefile is used for all source codes that must build binaries.
  2. DEFAULT_CFLAGS = -O2 -s
  3. ifndef CC
  4. ifeq (,$(shell which gcc 2>&1 >/dev/null))
  5. CC=gcc
  6. else
  7. CC=cc
  8. endif
  9. endif