Skip to content

Instantly share code, notes, and snippets.

View Yucukof's full-sized avatar
👨‍🎓
Student Profile

Hadrien Yucukof

👨‍🎓
Student Profile
View GitHub Profile
@meylingtaing
meylingtaing / Makefile
Last active June 11, 2025 18:48
A generic linked list library for C
llist_driver: llist.o main.c
gcc -Wall -Wextra llist.o main.c -o llist_driver
llist.o: llist.h llist.c
gcc -Wall -Wextra -fPIC llist.h -c llist.c
clean:
rm -rf *.o *.gch llist_driver