specification

This commit is contained in:
2019-09-24 08:53:00 +08:00
parent 9db01550c1
commit 3383293658
5 changed files with 124 additions and 65 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
CFLAGS += -g -Wall
OBG = rhost
all: rhost.o
$(CC) $(CFLAGS) $^ -o $(OBG)
clean:
rm -rf *.o
rm $(OBG)