vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

Makefrag (466B)


      1 LIBDRAW_OBJS = \
      2 	$(addprefix 9vx/libdraw/, \
      3 		arith.o \
      4 		bytesperline.o \
      5 		chan.o \
      6 		computil.o \
      7 		defont.o \
      8 		drawrepl.o \
      9 		fmt.o \
     10 		icossin.o \
     11 		icossin2.o \
     12 		rectclip.o \
     13 		rgb.o \
     14 	)
     15 
     16 9vx/libdraw/%.o: 9vx/libdraw/%.c
     17 	$(HOST_CC) $(HOST_CFLAGS) -I. -I9vx -I9vx/a -Wall -Wno-missing-braces -c -o $@ $<
     18 
     19 9vx/libdraw/libdraw.a: $(LIBDRAW_OBJS)
     20 	$(AR) rs $@ $(LIBDRAW_OBJS)
     21 
     22 CLEAN_FILES += \
     23 	9vx/libdraw/*.d \
     24 	9vx/libdraw/*.o \
     25 	9vx/libdraw/libdraw.a \
     26