feat(tp1)

This commit is contained in:
2025-03-27 12:42:38 +01:00
commit cdbd983b03
9 changed files with 117 additions and 0 deletions

19
tp1-obj3-meens/Makefile Normal file
View File

@@ -0,0 +1,19 @@
LIB_PATH=$(shell heptc -where)
OBJ=first_c/first.c
all: main
$(OBJ): first.ept
heptc -target c $<
main: $(OBJ)
gcc -I $(LIB_PATH)/c -I . main.c $<
clean:
$(RM) *.log
$(RM) *.epci
$(RM) *.mls
$(RM) *.o *.obj *.obc
$(RM) -r *_c
$(RM) *.out