home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / xgalaga-2_0_tar.gz / xgalaga-2_0_tar / xgalaga-2.0 / libsprite / Makefile.in < prev    next >
Makefile  |  1998-04-12  |  1KB  |  52 lines

  1. # Makefile.in for libsprite
  2. # $Id: Makefile.in,v 1.1.1.1 1998/04/12 06:03:22 mrogre Exp $
  3.  
  4. top_srcdir = @top_srcdir@
  5. srcdir = @srcdir@
  6. VPATH = @srcdir@
  7.  
  8. .SUFFIXES:
  9. .SUFFIXES: .c .o
  10.  
  11. AR = ar
  12. AR_FLAGS = rc
  13. RANLIB = @RANLIB@
  14.  
  15. RM = rm -f
  16. CC = @CC@
  17. CFLAGS = -I. -I.. @CFLAGS@ @X_CFLAGS@ @DEFS@
  18. LDFLAGS = @LDFLAGS@
  19. LIBS = @LIBS@ @X_LIBS@
  20. INSTALL = @INSTALL@
  21. prefix = @prefix@
  22. exec_prefix = @exec_prefix@
  23. bindir = $(exec_prefix)/bin
  24. libdir = $(prefix)/lib
  25. infodir = $(prefix)/info
  26.  
  27. OBJS = border.o cursor.o init.o misc.o sector.o \
  28.     buffer.o data.o line.o mouse.o text.o \
  29.     circle.o event.o makewindow.o point.o tile.o \
  30.     cleararea.o fill.o mapwindow.o scale.o triangle.o \
  31.     color.o image.o menu.o scroll.o
  32. SRCS = `echo $(OBJS) | sed -e 's/\.o/.c/g'`
  33. TARGET = libsprite.a
  34.  
  35. all: $(TARGET)
  36.  
  37. install: all
  38.     mkinstalldirs $(libdir)
  39.     $(INSTALL) $(TARGET) $(libdir)/$(TARGET)
  40.  
  41. $(TARGET): $(OBJS)
  42.     $(RM) $(TARGET)
  43.     $(AR) $(AR_FLAGS) $(TARGET) $(OBJS)
  44.     $(RANLIB) $(TARGET)
  45.  
  46. clean:
  47.     $(RM) core *.o $(OBJS) $(TARGET)
  48.  
  49. distclean: clean
  50.     $(RM) Makefile config.h config.status config.cache config.log
  51.  
  52.