diff options
119 files changed, 6098 insertions, 422 deletions
@@ -2,6 +2,8 @@ *.so *.a *.ghc +*.dSYM a.out -main.c -build/* +test_libft +obj/* +rendu.makefile diff --git a/.libftignore b/.libftignore new file mode 100644 index 0000000..68d827a --- /dev/null +++ b/.libftignore @@ -0,0 +1 @@ +*ft_printf* diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..94e4879 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: c +compiler: gcc + +script: make all && make test @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 HappyTramp + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. @@ -6,75 +6,71 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2020/01/19 08:17:08 by cacharle ### ########.fr # +# Updated: 2020/02/10 02:18:58 by cacharle ### ########.fr # # # # **************************************************************************** # LIB = ar rcs RM = rm -f +NORM = norminette +MAKE = make +MAKE_ARGS = --no-print-directory + +SRC_DIR = src |
