Move sources to /src

This commit is contained in:
Théophile Bastian 2021-11-22 15:54:23 +01:00
parent 1bfb8b9eb9
commit 8c86e255b0
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,3 @@
vgcore.*
a.out
test
liste

7
src/Makefile Normal file
View File

@ -0,0 +1,7 @@
CC=gcc
CFLAGS=-g
all: liste
liste: liste.c
$(CC) $< $(CFLAGS) -o $@