night mission

This commit is contained in:
2019-10-30 05:31:38 +01:00
parent 7ac2bc53e9
commit d721ea674c
8 changed files with 182 additions and 0 deletions

10
files/Makefile Normal file
View File

@@ -0,0 +1,10 @@
CC = gcc
CCOPT = -Wall -g -DDEBUG_LEVEL=1
LIBS =
t: t.c ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@