Makefile 338 B

12345678910111213
  1. CFLAGS = -O3 -Wall -DCONFIG_32=1 -DPPRO=1 -DASM=1
  2. SOURCES= basearith.c constants.c context.c convolute.c crt.c difradix2.c fnt.c \
  3. fourstep.c io.c memory.c mpdecimal.c mpsignal.c \
  4. numbertheory.c sixstep.c transpose.c
  5. OBJECTS = $(SOURCES:.c=.o)
  6. libmpdecimal.a: $(OBJECTS)
  7. ar rcs $@ $(OBJECTS)
  8. %.o: %.c
  9. $(CC) -c -o $@ $< $(CFLAGS)