This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ncsa-mosaic/libXmx/Makefile
Alan Dipert 29c82be0c2 init
2010-03-08 05:55:21 -05:00

23 lines
333 B
Makefile

# You shouldn't need to edit below here.
LIBTARGET = libXmx.a
all: $(LIBTARGET)
CFILES = Xmx.c Xmx2.c
OBJS = $(CFILES:.c=.o)
$(LIBTARGET): $(OBJS)
-rm -f $(LIBTARGET)
ar rv $(LIBTARGET) $(OBJS)
$(RANLIB) $(LIBTARGET)
Xmx.o: Xmx.c Xmx.h XmxP.h
Xmx2.o: Xmx2.c Xmx.h XmxP.h
clean:
-rm $(LIBTARGET) *.o
tags:
etags -t *.[ch]