mirror of
https://github.com/tiennm99/HDH.git
synced 2026-06-08 18:15:32 +00:00
9 lines
138 B
Makefile
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
|