X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=blobdiff_plain;f=Makefile;h=de3ba75521b68eb1829d19dad77681e91c1ecba4;hp=487027133174d67f4010fa07ea4d94f9c48bb491;hb=b63d30e3b9cceb0a33045bec2050f5d2598fe583;hpb=496f5d6622e32869916d421720c179ef3acbeb04 diff --git a/Makefile b/Makefile index 4870271..de3ba75 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,68 @@ .PHONY: all -CFLAGS=-Wall -Wextra -Werror -pedantic -DEBUGF=-O0 -v -g +CC=/usr/bin/cc +CFLAGS=-Wall -Wextra -Werror -std=c89 +DEBUGF=-O0 -g + +LINKGN=bin/obj/hostnamed-gen.o bin/obj/localed-gen.o bin/obj/timedated-gen.o bin/obj/logind-gen.o +LINKHN=bin/systemd-hostnamed bin/systemd-localed bin/systemd-timedated bin/systemd-logind + +GLIBEF=`pkg-config --cflags --libs glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0` +GLIBOF=`pkg-config --cflags glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0` + +SANITY=-Wno-unused-variable -Wno-unused-parameter # -Wno-comment + +PREFIX=/usr/local +SYSCONFDIR=/etc SRCDIR=src -MODDIR=$(SRCDIR)/modules +INTFDIR=$(SRCDIR)/interfaces + +DBUS_POLICYDIR=$(SYSCONFDIR)/dbus-1/systemd.d +DBUS_CONFIGDIR=$(PREFIX)/share/dbus-1/system-services + +all: build + +build: _build_interface_objs_debug + $(CC) -o bin/out.bin $(DEBUGF) $(GLIBEF) $(SANITY) $(SRCDIR)/main.c + +publish: _build_interface_objs + $(CC) -o bin/out.bin $(CFLAGS) $(GLIBEF) $(SANITY) $(SRCDIR)/main.c + +clean: + rm bin/* + rm bin/obj/* + +install: _install_conf _install_interface_binaries + +_build_interface_objs: _build_genfile_objs + $(CC) -o bin/systemd-hostnamed $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/hostnamed/hostnamed.c bin/obj/hostnamed-gen.o + $(CC) -o bin/systemd-localed $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/localed/localed.c bin/obj/localed-gen.o + $(CC) -o bin/systemd-timedated $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/timedated/timedated.c bin/obj/timedated-gen.o + $(CC) -o bin/systemd-logind $(CFLAGS) $(GLIBEF) $(SANITY) $(INTFDIR)/logind/logind.c bin/obj/logind-gen.o + +_build_interface_objs_debug: _build_genfile_objs_debug + $(CC) -o bin/systemd-hostnamed $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/hostnamed/hostnamed.c bin/obj/hostnamed-gen.o + $(CC) -o bin/systemd-localed $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/localed/localed.c bin/obj/localed-gen.o + $(CC) -o bin/systemd-timedated $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/timedated/timedated.c bin/obj/timedated-gen.o + $(CC) -o bin/systemd-logind $(DEBUGF) $(GLIBEF) $(SANITY) $(INTFDIR)/logind/logind.c bin/obj/logind-gen.o + +_build_genfile_objs: + $(CC) -o bin/obj/hostnamed-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/hostnamed/hostnamed-gen.c + $(CC) -o bin/obj/localed-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/localed/localed-gen.c + $(CC) -o bin/obj/timedated-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/timedated/timedated-gen.c + $(CC) -o bin/obj/logind-gen.o $(CFLAGS) $(GLIBOF) $(SANITY) -c $(INTFDIR)/logind/logind-gen.c + +_build_genfile_objs_debug: + $(CC) -o bin/obj/hostnamed-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/hostnamed/hostnamed-gen.c + $(CC) -o bin/obj/localed-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/localed/localed-gen.c + $(CC) -o bin/obj/timedated-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/timedated/timedated-gen.c + $(CC) -o bin/obj/logind-gen.o $(DEBUGF) $(GLIBOF) $(SANITY) -c $(INTFDIR)/logind/logind-gen.c -GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0` +_install_conf: + cp conf/*-dbus.conf $(DBUS_POLICYDIR)/ + cp conf/org.freedesktop.*.service $(DBUS_CONFIGDIR)/ + cp conf/systemd_compat.conf $(SYSCONFDIR)/ -hostnamed: - gcc -o bin/out.bin $(CFLAGS) $(DEBUGF) $(GLIBF) $(SRCDIR)/main.c +_install_interface_binaries: $(LINKHN) + mkdir $(PREFIX)/bin/systemd-compat + cp bin/systemd-* $(PREFIX)/bin/systemd-compat/