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