aboutsummaryrefslogtreecommitdiffstats
path: root/Xregion/Makefile.in
blob: 878a29b6f98d6cbd3d139299788bd4f4a6507131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SRCS = Region.c

OBJS = $(SRCS:.c=.o)

library = libXregion.a

all:: $(library)

$(library): $(OBJS)
	rm -f $(library)
	$(AR) $(library) $(OBJS)
	$(RANLIB) $(library)

# followed by boilerplate.mk