move md5 in seperate directory
This commit is contained in:
parent
3197dff3a9
commit
41ecca9dc7
11 changed files with 6 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -18,6 +18,7 @@ NAME := ft_ssl
|
||||||
|
|
||||||
ROOT := $(shell pwd)
|
ROOT := $(shell pwd)
|
||||||
SRC_DIR := $(ROOT)/src/
|
SRC_DIR := $(ROOT)/src/
|
||||||
|
MD5_DIR := $(SRC_DIR)/md5/
|
||||||
OBJ_DIR := $(ROOT)/obj/
|
OBJ_DIR := $(ROOT)/obj/
|
||||||
INC_DIR := $(ROOT)/inc/
|
INC_DIR := $(ROOT)/inc/
|
||||||
LIB_DIR := $(ROOT)/lib/
|
LIB_DIR := $(ROOT)/lib/
|
||||||
|
@ -149,6 +150,7 @@ multi:
|
||||||
# special stuff
|
# special stuff
|
||||||
|
|
||||||
vpath %.c $(SRC_DIR) \
|
vpath %.c $(SRC_DIR) \
|
||||||
|
$(MD5_DIR) \
|
||||||
$(TST_DIR) \
|
$(TST_DIR) \
|
||||||
$(MUINUT_DIR)
|
$(MUINUT_DIR)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
printf("hello from sha256");
|
printf("hello from sha256\n");
|
||||||
return(0);
|
return (0);
|
||||||
}
|
}
|
Loading…
Reference in a new issue