]> git.pld-linux.org Git - packages/imgworks.git/blame - imgworks-verbose.patch
- new
[packages/imgworks.git] / imgworks-verbose.patch
CommitLineData
22206298
JB
1--- imgworks-0.8.1/Makefile.orig 2009-02-10 09:00:00.000000000 +0100
2+++ imgworks-0.8.1/Makefile 2014-02-07 22:40:35.732880519 +0100
3@@ -9,18 +9,18 @@
4
5 all config:
6 @for subdir in $(ALL_SRC_DIRS); do \
7- $(MAKE) -s -C $$subdir -f Makefile $@; \
8+ $(MAKE) -C $$subdir -f Makefile $@; \
9 done
10 @echo "To install, type \"su\" (to gain root privileges)\
11 and then type \"make install\"."
12
13 install:
14 @for subdir in $(ALL_SRC_DIRS); do \
15- $(MAKE) -s -C $$subdir -f Makefile $@; \
16+ $(MAKE) -C $$subdir -f Makefile $@; \
17 done
18 @echo "Installation complete."
19
20 clean:
21 @for subdir in $(ALL_SRC_DIRS); do \
22- $(MAKE) -s -C $$subdir -f Makefile $@; \
23+ $(MAKE) -C $$subdir -f Makefile $@; \
24 done
25--- imgworks-0.8.1/imgworks/Makefile.orig 2009-02-10 09:00:00.000000000 +0100
26+++ imgworks-0.8.1/imgworks/Makefile 2014-02-07 22:43:14.209540535 +0100
27@@ -32,11 +32,9 @@
28 OBJ_C = $(SRC_C:.c=.o)
29 OBJ_CPP = $(SRC_CPP:.cpp=.o)
30 .c.o:
31- @echo "Compiling module $*.o"
32- @+$(CC) -c $*.c $(INC_DIRS) $(CFLAGS)
33+ $(CC) -c $*.c $(INC_DIRS) $(CFLAGS)
34 .cpp.o:
35- @echo "Compiling module $*.o"
36- @+$(CPP) -c $*.cpp $(INC_DIRS) $(CFLAGS) $(CPPFLAGS)
37+ $(CPP) -c $*.cpp $(INC_DIRS) $(CFLAGS) $(CPPFLAGS)
38
39 # Programs
40 LS = ls
This page took 0.08815 seconds and 4 git commands to generate.