some modify

This commit is contained in:
2021-04-09 18:13:55 +09:00
parent d6b01a0ac5
commit 1b4d5fb6a4
30 changed files with 569 additions and 55 deletions

8
mkramfs/Makefile Executable file
View File

@@ -0,0 +1,8 @@
CC := g++
CFLAGS := -std=c++17
mkramfs: main.cpp
$(CC) $(CFLAGS) -o mkramfs main.cpp
clean: $(RM) mkramfs