summaryrefslogtreecommitdiffstats
path: root/xsettings/Makefile
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-03-19 15:44:42 +0000
committerOwen Taylor <otaylor@redhat.com>2001-03-19 15:44:42 +0000
commit2bee70df1f208df344c096cced4259eb44c2b3d2 (patch)
treed87432dacf1d27e11e1f6d9b2ec024b0f6002b14 /xsettings/Makefile
downloadxdg-specs-2bee70df1f208df344c096cced4259eb44c2b3d2.tar.xz
Initial revision
Diffstat (limited to 'xsettings/Makefile')
-rw-r--r--xsettings/Makefile18
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
+