Makefile 113 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 APP_NAME := hello_world all: arm-linux-gnueabihf-gcc -o $(APP_NAME) $(APP_NAME).c clean: $(RM) $(APP_NAME).o