Makefile 85 B

1234567
  1. CROSS_COMPILE =
  2. CC = $(CROSS_COMPILE)gcc
  3. all: hello
  4. hello: hello.c
  5. $(CC) -o $@ $<