diff options
Diffstat (limited to 'psxdev/Makefile')
-rw-r--r-- | psxdev/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/psxdev/Makefile b/psxdev/Makefile new file mode 100644 index 0000000..3db2a0f --- /dev/null +++ b/psxdev/Makefile @@ -0,0 +1,10 @@ +TARGETS=bs.o idctfst.o jfdctint.o vlc.o + +CC=gcc +CPPFLAGS=-march=i386 -O3 + +all: $(TARGETS) + +clean: + rm -f *.o + |