From 6a0fcf96700a7b640114ea40cb64e3c3a5213a68 Mon Sep 17 00:00:00 2001 From: OpenGnSys Support Team Date: Tue, 10 Dec 2019 19:21:47 +0100 Subject: #970 autotools support for ogAdmServer To build and to install ogAdmServer: autoreconf -fi ./configure make make install Default prefix is /opt/opengnsys/ as usual. ogAdmServer uses autotools for compilation, so this patch adapts OpenGnsys updater and installer to use autotools for compilation. --- Makefile | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 0c3360e..0000000 --- a/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# makefile - -# Nombre del proyecto -PROYECTO := ogAdmServer - -# Directorio de instalaciĆ³n -INSTALL_DIR := /opt/opengnsys - -# Opciones de compilacion -CFLAGS := $(shell mysql_config --cflags) -CFLAGS += -g -Wall -I../../Includes - -# Opciones de linkado -LDFLAGS := -Wl,--no-as-needed $(shell mysql_config --libs) -lev -ljansson -ldbi - -# Ficheros objetos -OBJS := sources/ogAdmServer.o sources/dbi.o - - -all: $(PROYECTO) - -$(PROYECTO): $(OBJS) - gcc $(LDFLAGS) $(CFLAGS) $(OBJS) -o $(PROYECTO) - -install: $(PROYECTO) - cp $(PROYECTO) $(INSTALL_DIR)/sbin - cp $(PROYECTO).cfg $(INSTALL_DIR)/etc - -clean: - rm -f $(PROYECTO) $(OBJS) - -uninstall: clean - rm -f /usr/local/sbin/$(PROYECTO) /usr/local/etc/$(PROYECTO).cfg - -sources/%.o: sources/%.c - gcc $(CFLAGS) -c -o"$@" "$<" - - -- cgit v1.2.3-18-g5258