diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-03-19 15:44:42 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@redhat.com> | 2001-03-19 15:44:42 +0000 |
commit | 2bee70df1f208df344c096cced4259eb44c2b3d2 (patch) | |
tree | d87432dacf1d27e11e1f6d9b2ec024b0f6002b14 /xsettings/Makefile | |
download | xdg-specs-2bee70df1f208df344c096cced4259eb44c2b3d2.tar.xz |
Initial revision
Diffstat (limited to 'xsettings/Makefile')
-rw-r--r-- | xsettings/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xsettings/Makefile b/xsettings/Makefile new file mode 100644 index 0000000..cc126f9 --- /dev/null +++ b/xsettings/Makefile @@ -0,0 +1,18 @@ +CFLAGS= -Wall -g `gtk-config --cflags` -g -Wall +LIBS=`gtk-config --libs` + +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 + +xsettings-manager: $(manager_objects) + $(CC) -o $@ $(manager_objects) $(LIBS) + +xsettings-client: $(client_objects) + $(CC) -o $@ $(client_objects) $(LIBS) + +clean: + rm -f *.o xsettings-manager xsettings-client + |