Files
HDH/Lab4/Makefile
T
2019-11-17 15:06:20 +07:00

9 lines
138 B
Makefile

all: main.o ex1.o
gcc main.o ex1.o -o ex1 -lm
main.o: main.c ex1.h
gcc -c main.c
ex1.o: ex1.c ex1.h
gcc -c ex1.c
clean:
rm -f *.o ex1