blob: d7fd00b8604e23b142d82c2d804679deec7a07ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
all: question2.o question1.o
gcc -ggdb -o main question1.o question2.o
question2.o: question2.c
gcc -c question2.c
question1.o: question1.c question1.h
gcc -c question1.h question1.c
clean:
rm *.o
rm *.gch
|