diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-05-19 18:32:44 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-05-19 18:40:36 +0200 |
commit | 304152d3f387cb14daf0e4ed960ae0767092de8f (patch) | |
tree | 13b21f710a48584de497c70a954eae14a74a465e /admin/Sources/Clients/ogAdmClient/Makefile | |
parent | edf5a2299e31756cfc1312af699a8932b81a34e8 (diff) |
#971 remove ogAdmClient and ogAdmAgentdevel-ogadmserver-for-master
ogAdmClient has been replaced by ogClient.
ogAdmAgent has been integrated into ogAdmServer.
Diffstat (limited to 'admin/Sources/Clients/ogAdmClient/Makefile')
-rw-r--r-- | admin/Sources/Clients/ogAdmClient/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/admin/Sources/Clients/ogAdmClient/Makefile b/admin/Sources/Clients/ogAdmClient/Makefile deleted file mode 100644 index d3628c9d..00000000 --- a/admin/Sources/Clients/ogAdmClient/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# makefile - -# Nombre del proyecto -PROYECTO := ogAdmClient - -# Directorios y librerias -DIRS := -LIBS := -static - -# Opciones de compilacion -OPCS := -m32 -O0 -g -Wall # Depuracion -#OPCS := -m32 -O3 -Wall # Optimizacion - -# Ficheros objetos -OBJS := sources/ogAdmClient.o - -all: $(PROYECTO) - -$(PROYECTO): $(OBJS) - gcc $(OPCS) $(DIRS) $(LIBS) $(OBJS) -o $(PROYECTO) -# strip $(PROYECTO) # Optimizacion - -clean: - rm -f $(PROYECTO) $(OBJS) - -sources/%.o: sources/%.c - gcc $(OPCS) -I ../../Includes -c -o"$@" "$<" - - - - |