First commit

This commit is contained in:
2017-07-09 06:07:34 +02:00
commit 68eec1a085
2 changed files with 295 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
CC=cc
CFLAGS=-Wall -pedantic
on-stock: on-stock.o
${CC} ${CFLAGS} on-stock.o -o on-stock
clean:
rm -f on-stock.o on-stock