blob: e69b95afcfa124ef102243e75ef7f9f5355bee80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- Makefile.orig Tue May 6 15:00:40 2003
+++ Makefile Tue Dec 5 16:44:03 2006
@@ -1,4 +1,4 @@
-include Make.include
+#include Make.include
DISTFILES=\
add-xscreensaver \
@@ -21,18 +21,17 @@
win32/
all: libgfx/src/libgfx.a
- cd src && make
+ cd src && ${MAKE}
libgfx/src/libgfx.a:
- gunzip -c libgfx-1.0.1.tar.gz | tar x
- cd libgfx && ./configure && cd src && make
+ cd libgfx && ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} && cd src && ${MAKE}
install: all
sh ./installit $(DESTDIR)
clean:
- make -C src clean
- make -C win32 clean
+ ${MAKE} -C src clean
+ ${MAKE} -C win32 clean
dist:
rm -rf fireflies-$(VERSION)
|