diff options
author | Pixel <Pixel> | 2002-07-21 11:52:56 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-07-21 11:52:56 +0000 |
commit | cbee971a2e8929924f63535d174637106620eae3 (patch) | |
tree | 6ea7249ad3996c6e750deb9814991e9005887449 /lib/Makefile | |
parent | 6528f07c516efe4d3b344f01740067878d5d9a43 (diff) |
Prlorf
Diffstat (limited to 'lib/Makefile')
-rwxr-xr-x | lib/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5503701..9fbb4b3 100755 --- a/lib/Makefile +++ b/lib/Makefile @@ -3,9 +3,14 @@ CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes CXX=g++ -TARGET = cdutils.o dteutils.o fileutils.o generic.o lzss.o yazedc.o +OBJECTS = cdutils.o dteutils.o lzss.o yazedc.o +TARGET = lib.a all: ${TARGET} +lib.a: ${OBJECTS} + ar -r lib.a ${OBJECTS} + ranlib lib.a + clean: rm -f *.o ${TARGET} compil.c |