File indexing completed on 2024-05-12 05:51:15

0001 all: test
0002 
0003 main.o: main.c
0004         gcc -Wall -g -Isubdir -c -o main.o main.c
0005 
0006 enter_exit_subdir.o: subdir/enter_exit_subdir.c subdir/enter_exit_subdir.h
0007         cd ./subdir/ && make
0008         mv ./subdir/*.o ./
0009 
0010 incl_from.o: incl_from.c incl_from.h incl_from_from.h
0011         gcc -Wall -g -c -o incl_from.o incl_from.c
0012 
0013 test: clean enter_exit_subdir.o incl_from.o main.o
0014         gcc -Wall -g main.o incl_from.o -o test
0015     
0016 
0017 clean:
0018         rm -rf *.o test