Advertisement
Guest User

Untitled

a guest
Aug 31st, 2011
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.55 KB | None | 0 0
  1. TOPSRCDIR = @top_srcdir@
  2. TOPOBJDIR = ../..
  3. SRCDIR    = @srcdir@
  4. VPATH     = @srcdir@
  5. MODULE    = none
  6.  
  7. EXTRAINCL = @X_CFLAGS@
  8. # FIXME: add -lXpm to configure
  9. EXTRALIBS = @X_LIBS@ @X_PRE_LIBS@ @XLIB@ -lXpm
  10.  
  11. C_SRCS = \
  12.     main.c \
  13.     splash.c
  14.  
  15. PROGRAMS = winesplash
  16.  
  17. INSTALLDIRS = \
  18.     $(DESTDIR)$(bindir)
  19.  
  20. all: $(PROGRAMS)
  21.  
  22. @MAKE_RULES@
  23.  
  24.  
  25. winesplash: $(OBJS)
  26.     $(CC) -o $@ $(OBJS) $(EXTRALIBS)
  27.  
  28. install:: winesplash $(INSTALLDIRS)
  29.     $(INSTALL_PROGRAM) winesplash $(DESTDIR)$(bindir)/winesplash
  30.  
  31. uninstall::
  32.     $(RM) $(DESTDIR)$(bindir)/winesplash
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement