source: trunk/debathena/debathena/firefox-wrapper/Makefile @ 23004

Revision 23004, 406 bytes checked in by ghudson, 16 years ago (diff)
Moving firefox-wrapper to debathena broke its build, since packages outside of athena/ don't get run through daconfiscate. Switch to a bare Makefile.
Line 
1bindir=/usr/bin
2
3all: testlock
4
5testlock: testlock.o
6        cc ${LDFLAGS} -o $@ testlock.o ${LIBS}
7
8.c.o:
9        ${CC} -c ${CPPFLAGS} ${CFLAGS} $<
10
11check:
12
13install:
14        mkdir -p ${DESTDIR}${bindir}
15        install -c -m 755 firefox.sh ${DESTDIR}${bindir}/firefox.debathena
16        install -c -m 755 testlock ${DESTDIR}${bindir}
17
18clean:
19        rm -f testlock.o testlock
20
21distclean: clean
22        rm -f config.cache config.log config.status Makefile
Note: See TracBrowser for help on using the repository browser.