diff options
Diffstat (limited to 'generic/Makefile')
-rwxr-xr-x | generic/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/Makefile b/generic/Makefile index 99a9631..4ca5e32 100755 --- a/generic/Makefile +++ b/generic/Makefile @@ -2,11 +2,12 @@ CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -I../includes -DPARANOID_SEEK -DHAVE_ZLIB CXX=g++ +CC=gcc -OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Output.o generic.o String.o +OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Output.o generic.o String.o checkargs.o datecalc.o TARGET = generic.a -all: ${TARGET} +all: ${TARGET} Makefile generic.a: ${OBJECTS} ar -r generic.a ${OBJECTS} |