CC = arm-linux-g++
STRIP = arm-linux-strip
EXEC = hello
SRC = hello.cpp
CFLAGS = -static -Wno-deprecated
all:	$(EXEC)

$(EXEC): $(OBJS)
	$(CC) $(CFLAGS) -o $(EXEC) $(SRC)
	$(STRIP) $(EXEC)

clean:
	rm -f $(EXEC)
