You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.in 198B

123456789101112131415
  1. SRCS = Region.c
  2. OBJS = $(SRCS:.c=.o)
  3. library = libXregion.a
  4. all:: $(library)
  5. $(library): $(OBJS)
  6. rm -f $(library)
  7. $(AR) $(library) $(OBJS)
  8. $(RANLIB) $(library)
  9. # followed by boilerplate.mk