mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-12 16:23:08 +00:00
17 lines
214 B
Makefile
17 lines
214 B
Makefile
.PHONY: run clean
|
|
|
|
main.out: main.o f.o
|
|
gcc -o main.out main.o f.o -l:libgfortran.so.3
|
|
|
|
run: main.out
|
|
./main.out
|
|
|
|
main.o: main.c
|
|
gcc -c "$<" -o "$@"
|
|
|
|
f.o: f.f
|
|
gfortran -c "$<" -o "$@"
|
|
|
|
clean:
|
|
rm -rf *.o *.out
|