mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-08 14:02:03 +00:00
18 lines
256 B
Makefile
18 lines
256 B
Makefile
.POSIX:
|
|
.PHONY: run clean
|
|
|
|
main.out: main.o c.o
|
|
g++ -o '$@' $^
|
|
|
|
c.o: c.c
|
|
gcc -c -o '$@' -std=c89 -Wextra -pedantic-errors '$<'
|
|
|
|
main.o: main.cpp
|
|
g++ -c -o '$@' -std=c++98 -Wextra -pedantic-errors '$<'
|
|
|
|
run: main.out
|
|
./main.out
|
|
|
|
clean:
|
|
rm -f *.o *.out
|