mirror of
https://github.com/tiennm99/HDH.git
synced 2026-06-08 20:13:15 +00:00
10 lines
139 B
Makefile
10 lines
139 B
Makefile
all: ex1.o ex2.o
|
|
gcc ex1.o -o ex1 -lgmp
|
|
gcc ex2.o -o ex2
|
|
ex1.o: ex1.c
|
|
gcc -c ex1.c
|
|
ex2.o: ex2.c
|
|
gcc -c ex2.c
|
|
clean:
|
|
rm -f *.o ex1 ex2
|