added t1 t2 and readme

This commit is contained in:
2020-05-17 12:16:22 +02:00
committed by GitHub
parent 77d02fc093
commit 778bbe1ff2
16 changed files with 117 additions and 0 deletions

19
trial1/makefile Normal file
View File

@@ -0,0 +1,19 @@
CC=gcc
IDIR=./include
LDIR=./lib
ODIR=./out
_DEPS = fun1.h
DEPS = $(pathsbst %,(IDIR)/%,%(_DEPS))
CFLAGS= -I. -T$(IDIR)
.PHONY: all clean
all: main.c fun1.c
${CC} -o $(ODIR)/main2 main.c fun1.c
clean:
rm -r $(ODIR)/*
rm -r ./keys/*