summaryrefslogtreecommitdiffstats
path: root/unix/tx/Makefile.in
blob: 89c30b17a05cad71f12ea8a1125ecc95955d6963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SRCS = TXWindow.cxx TXScrollbar.cxx TXViewport.cxx TXImage.cxx TXMenu.cxx

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

DIR_CPPFLAGS = -I$(top_srcdir) @X_CFLAGS@ # X_CFLAGS are really CPPFLAGS

library = libtx.a

all:: $(library)

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

# followed by boilerplate.mk