~ubuntu-branches/ubuntu/karmic/edubuntu-artwork/karmic

« back to all changes in this revision

Viewing changes to art/usplash/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Jordan Mantha
  • Date: 2009-03-09 22:07:49 UTC
  • Revision ID: james.westby@ubuntu.com-20090309220749-5ijbrtnsi74xi3b3
Tags: 0.1.0-56
* drop edubuntu-artwork-usplash package as it is not well-maintained
  and makes little sense for an addon.
    Closes LP: #39186, #66726, #83410, #271376, #318522, #323011
* bump standards version to 3.8.0
* set Maintainer as Edubuntu Developers <edubuntu-devel@lists.ubuntu.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
C=gcc
2
 
CFLAGS=-g -Wall -fPIC
3
 
LDFLAGS=
4
 
INCLUDES=
5
 
 
6
 
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
7
 
LINK = $(CC) $(CFLAGS) $(LDFLAGS)
8
 
 
9
 
INSTALL = /usr/bin/install -c
10
 
INSTALL_DATA = $(INSTALL) -m 644
11
 
INSTALL_PROGRAM = $(INSTALL) -m 755
12
 
 
13
 
all: usplash-theme-edubuntu.so
14
 
 
15
 
usplash-theme-edubuntu.so: throbber_back.png.c.o throbber_fore.png.c.o usplash_1024_768.png.c.o usplash_1365_768_scaled.png.c.o usplash_800_600.png.c.o usplash_800_480.png.c.o usplash_640_480.png.c.o usplash-theme-edubuntu.c.o
16
 
        $(COMPILE) -shared -o $@ $^
17
 
        
18
 
%.png.c: %.png
19
 
        pngtousplash $< > $@
20
 
 
21
 
%.bdf.c: %.bdf
22
 
        bdftousplash $< > $@
23
 
 
24
 
%.c.o: %.c
25
 
        $(COMPILE) -o $@ -c $<
26
 
 
27
 
install:
28
 
        $(INSTALL) -d $(DESTDIR)/usr/lib/usplash
29
 
        $(INSTALL_PROGRAM) usplash-theme-edubuntu.so $(DESTDIR)/usr/lib/usplash/edubuntu-splash.so
30
 
clean:
31
 
        rm -f *.png.c *.bdf.c *.c.o *.so