Advertisement
HeroBaga

Untitled

Oct 30th, 2021
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. all: s21_string
  2.  
  3. s21_string: unittest.o s21_string.o
  4. gcc unittest.o s21_string.o -o ../build/s21_string -I../../.brew/include -L../../.brew/Cellar/check/0.15.2/lib -lcheck
  5.  
  6. s21_string.o: s21_string.c s21_string.h
  7. gcc -c s21_string.c -o s21_string.o
  8.  
  9. unittest.o: unittest.c
  10. gcc -c unittest.c -I../../.brew/include -L../../.brew/Cellar/check/0.15.2/lib
  11.  
  12. clean:
  13. rm -rf *.o ../build/s21_string
  14.  
  15. rebuild: clean all
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement