move md5 in seperate directory

This commit is contained in:
Gregory 2018-10-20 22:21:19 +03:00
parent 3197dff3a9
commit 41ecca9dc7
11 changed files with 6 additions and 4 deletions

View file

@ -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)

View file

@ -2,6 +2,6 @@
int main() int main()
{ {
printf("hello from sha256"); printf("hello from sha256\n");
return(0); return (0);
} }