HLPL/task4/Makefile

15 lines
213 B
Makefile
Raw Normal View History

2020-05-06 14:55:30 +00:00
binary.o: task4.o libstacks.a
gcc -o binary.o task4.o -L. -lstacks
task4.o: task4.c
gcc -c task4.c
libstacks.a: stacks.o
ar cr libstacks.a stacks.o
stacks.o: stacks.c
gcc -c stacks.c
clean:
rm -f *.o *.a