Skip to content

Commit 8d5ab8c

Browse files
committed
Merge pull request #18 from bgilbert/phoney
Fix .PHONY Make targets
2 parents 76f905c + ff89c77 commit 8d5ab8c

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

doc/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#
22

3-
.PHONEY: all
3+
.PHONY: all
44
all: $(PS)
55
cd nipguide; $(MAKE)
66

7-
.PHONEY: clean
7+
.PHONY: clean
88
clean:
99
cd nipguide; $(MAKE) clean
1010

11-
.PHONEY: install
11+
.PHONY: install
1212
install:
1313
cd nipguide; $(MAKE) install

doc/nipguide/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $(PDF): $(SRC)
3030
pdflatex nipguide.tex
3131
pdflatex nipguide.tex
3232

33-
.PHONEY: html
33+
.PHONY: html
3434
html:
3535
-rm -rf nipguide
3636
mkdir nipguide
@@ -39,7 +39,7 @@ html:
3939
-rm nipguide/*.jpg
4040
-rm nipguide/*.png
4141

42-
.PHONEY: clean
42+
.PHONY: clean
4343
clean:
4444
-rm -f *.4ct
4545
-rm -f *.4tc

src/Makefile.am

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -328,27 +328,21 @@ nip2_SOURCES = \
328328
$(my_sources)
329329
endif
330330

331-
.PHONEY: helpindex.h
332331
helpindex.h:
333332
./makehelpindex.pl $(prefix) > helpindex.h
334-
.PHONEY: nipmarshal.h
335333
nipmarshal.h:
336334
glib-genmarshal --prefix=nip --header nipmarshal.list > nipmarshal.h
337-
.PHONEY: nipmarshal.c
338335
nipmarshal.c:
339336
echo "#include \"nipmarshal.h\"" > nipmarshal.c
340337
glib-genmarshal --prefix=nip --body nipmarshal.list >> nipmarshal.c
341-
.PHONEY: gtksheet-marshal.h
342338
gtksheet-marshal.h:
343339
glib-genmarshal --prefix=gtksheet --header gtksheet-marshal.list > \
344340
gtksheet-marshal.h
345-
.PHONEY: gtksheet-marshal.c
346341
gtksheet-marshal.c:
347342
echo "#include \"gtksheet-marshal.h\"" > gtksheet-marshal.c
348343
glib-genmarshal --prefix=gtksheet --body gtksheet-marshal.list >> \
349344
gtksheet-marshal.c
350345

351-
.PHONEY: gtksheettypebuiltins.h
352346
gtksheettypebuiltins.h: $(gtksheet_public_h_sources)
353347
( glib-mkenums \
354348
--fhead "#ifndef __GTKSHEET_TYPE_BUILTINS_H__\n#define __GTKSHEET_TYPE_BUILTINS_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
@@ -357,7 +351,6 @@ gtksheettypebuiltins.h: $(gtksheet_public_h_sources)
357351
--ftail "G_END_DECLS\n\n#endif /* __GTKSHEET_TYPE_BUILTINS_H__ */" \
358352
$(gtksheet_public_h_sources) ) > gtksheettypebuiltins.h
359353

360-
.PHONEY: gtksheettypebuiltins.c
361354
gtksheettypebuiltins.c: $(gtksheet_public_h_sources)
362355
( glib-mkenums \
363356
--fhead "#define GTKSHEET_ENABLE_BROKEN\n#include \"gtksheet.h\"" \

0 commit comments

Comments
 (0)