summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Clients/ogAdmLnxClient/Makefile
blob: bc2fe3a9f4a3df70b74b83238ccecde45a961a92 (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 := ogAdmLnxClient

# Directorios y librerias
DIRS :=
LIBS := -static

# Opciones de compilacion
#OPCS := -m32 -O0 -g -Wall	# Depuracion
OPCS := -m32 -O3 -Wall		# Optimizacion

# Ficheros objetos
OBJS := sources/ogAdmLnxClient.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"$@" "$<"