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 | |
---|
1 | bindir=/usr/bin |
---|
2 | |
---|
3 | all: testlock |
---|
4 | |
---|
5 | testlock: testlock.o |
---|
6 | cc ${LDFLAGS} -o $@ testlock.o ${LIBS} |
---|
7 | |
---|
8 | .c.o: |
---|
9 | ${CC} -c ${CPPFLAGS} ${CFLAGS} $< |
---|
10 | |
---|
11 | check: |
---|
12 | |
---|
13 | install: |
---|
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 | |
---|
18 | clean: |
---|
19 | rm -f testlock.o testlock |
---|
20 | |
---|
21 | distclean: clean |
---|
22 | rm -f config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.