diff options
author | Pixel <Pixel> | 2002-06-23 15:37:45 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-06-23 15:37:45 +0000 |
commit | b3c377e647b5eb14c2ed0ff27db4ac14a3fd4e2d (patch) | |
tree | 7905392c81d466a6e5c0fc89ca118a044c26cb52 /psxdev/Makefile | |
parent | 7514019f385767caf7e68ae281d3a4befb7b4e8f (diff) |
Attribute ((packed)) fix...
Diffstat (limited to 'psxdev/Makefile')
-rw-r--r-- | psxdev/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/psxdev/Makefile b/psxdev/Makefile index 5cc33ca..fb1cc78 100644 --- a/psxdev/Makefile +++ b/psxdev/Makefile @@ -1,15 +1,17 @@ +#!/usr/bin/make -f + TARGETS=xadecode.o bs.o idctfst.o jfdctint.o vlc.o CC=gcc -CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -I.. # -Werror # -pedantic-errors -all: $(TARGETS) +all: ${TARGETS} bstoppm: xadecode.o bs.o idctfst.o jfdtint.o vlc.o bstoppm.o ${CC} ${LDFLAGS} xadecode.o bs.o idcfst.o jfdtint.o vlc.o bstoppm.o -o bstoppm clean: - rm -f *.o + rm -f *.o ${TARGETS} |