浏览代码

Modification makefile + include wildcard

Loquicom 6 年之前
父节点
当前提交
6818490406
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1 1
      makefile
  2. 1 0
      parser.c

+ 1 - 1
makefile

@@ -3,7 +3,7 @@
 #
 
 EXEC = mysh
-OBJETS = str.o parser.o
+OBJETS = str.o parser.o wildcard.o
 NOM_PROJET = mini-shell
 
 #

+ 1 - 0
parser.c

@@ -12,6 +12,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#include "wildcard.h"
 #include "parser.h"
 
 /* --- Fonctions privées --- */