Changement nom dossier bibliothèque
This commit is contained in:
parent
fc85ceef5d
commit
38ed0a1f49
3 changed files with 8 additions and 3 deletions
7
Makefile
7
Makefile
|
@ -1,5 +1,6 @@
|
||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-Wall -g -Isrc/parser
|
CFLAGS=-Wall -g -Isrc/shell_tools
|
||||||
|
LIB=src/shell_tools
|
||||||
|
|
||||||
all: directories rishtik clean
|
all: directories rishtik clean
|
||||||
|
|
||||||
|
@ -9,8 +10,8 @@ rishtik: obj/lib.o obj/shell.o
|
||||||
obj/shell.o: src/shellOpt.c
|
obj/shell.o: src/shellOpt.c
|
||||||
$(CC) $(CFLAGS) $^ -o $@ -c
|
$(CC) $(CFLAGS) $^ -o $@ -c
|
||||||
|
|
||||||
obj/lib.o: src/parser/parser.c directories
|
obj/lib.o: $(LIB)/parser.c
|
||||||
$(CC) $(CFLAGS) $< -o $@ -c
|
$(CC) $(CFLAGS) $^ -o $@ -c
|
||||||
|
|
||||||
.PHONY: all directories clean
|
.PHONY: all directories clean
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
/**
|
/**
|
||||||
|
* Code source pour la bibliothèque servant à parser et récupérer l’entrée
|
||||||
|
* utilisateur.
|
||||||
* @file parser.c
|
* @file parser.c
|
||||||
* @author rick <rick@gnous.eu>
|
* @author rick <rick@gnous.eu>
|
||||||
* @date 2021
|
* @date 2021
|
|
@ -1,4 +1,6 @@
|
||||||
/**
|
/**
|
||||||
|
* Header pour la bibliothèque servant à parser et récupérer l’entrée
|
||||||
|
* utilisateur.
|
||||||
* @file parser.h
|
* @file parser.h
|
||||||
* @author rick <rick@gnous.eu>
|
* @author rick <rick@gnous.eu>
|
||||||
* @date 2021
|
* @date 2021
|
Loading…
Reference in a new issue