summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Clients/ogAdmClient/Makefile
blob: d3628c9d983490ffe5c6b661f765e635ace3b687 (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
# 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"$@" "$<"