diff options
Diffstat (limited to 'xsettings/Makefile')
-rw-r--r-- | xsettings/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xsettings/Makefile b/xsettings/Makefile index cc126f9..44109c8 100644 --- a/xsettings/Makefile +++ b/xsettings/Makefile @@ -5,7 +5,7 @@ manager_objects = manager.o gtk-utils.o xsettings-common.o xsettings-manager.o client_objects = client.o xsettings-common.o xsettings-client.o -all: xsettings-manager xsettings-client +all: xsettings-manager xsettings-client xsettings.html xsettings-manager: $(manager_objects) $(CC) -o $@ $(manager_objects) $(LIBS) @@ -13,6 +13,11 @@ xsettings-manager: $(manager_objects) xsettings-client: $(client_objects) $(CC) -o $@ $(client_objects) $(LIBS) -clean: - rm -f *.o xsettings-manager xsettings-client +xsettings.html: xsettings.xml + xmlto html-nochunks $< + +xsettings.ps: xsettings.xml + docbook2ps xsettings.xml +clean: + rm -f *.o xsettings-manager xsettings-client xsettings.html |