summaryrefslogtreecommitdiffstats
path: root/admin/Services/ogAdmClient/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'admin/Services/ogAdmClient/Makefile')
-rw-r--r--admin/Services/ogAdmClient/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/admin/Services/ogAdmClient/Makefile b/admin/Services/ogAdmClient/Makefile
deleted file mode 100644
index c3b42258..00000000
--- a/admin/Services/ogAdmClient/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# makefile
-
-# Nombre del proyecto
-PROYECTO := ogAdmClient
-
-# Directorios y librerias
-DIRS :=
-LIBS := -static
-
-# Opciones de compilacion
-OPCS := -O0 -g -Wall # Depuracion
-#OPCS := -O3 -Wall # Optimizacion
-
-# Ficheros objetos
-OBJS := sources/ogAdmClient.o
-
-all: $(PROYECTO)
-
-$(PROYECTO): $(OBJS)
- g++ $(DIRS) $(LIBS) $(OBJS) -o $(PROYECTO)
-# strip $(PROYECTO) # Optimizacion
-
-clean:
- rm $(PROYECTO) $(OBJS)
-
-sources/%.o: sources/%.cpp
- g++ $(OPCS) -c -o"$@" "$<"
-
-sources/%.o: sources/%.c
- gcc $(OPCS) -I ../includes -c -o"$@" "$<"
-
-