blob: a79855e3e5e0e90a17115a62f44bda22338c9488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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)
g++ $(OPCS) $(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"$@" "$<"
|