source: admin/Sources/Clients/ogAdmClient/Makefile @ fac0b87

Last change on this file since fac0b87 was de687e3, checked in by ramon <ramongomez@…>, 10 years ago

#673: Integrar código de la versión 1.0.6 en rama principal.

git-svn-id: https://opengnsys.es/svn/trunk@4641 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 503 bytes
RevLine 
[3ec149c]1# makefile
2
3# Nombre del proyecto
4PROYECTO := ogAdmClient
5
6# Directorios y librerias
7DIRS :=
8LIBS := -static
9
10# Opciones de compilacion
[de687e3]11OPCS := -m32 -O0 -g -Wall       # Depuracion
12#OPCS := -m32 -O3 -Wall         # Optimizacion
[3ec149c]13
14# Ficheros objetos
15OBJS := sources/ogAdmClient.o
16
17all: $(PROYECTO)
18
19$(PROYECTO): $(OBJS)
[de687e3]20        gcc $(OPCS) $(DIRS) $(LIBS) $(OBJS) -o $(PROYECTO)
21#       strip $(PROYECTO)       # Optimizacion
[3ec149c]22
23clean:
[de687e3]24        rm -f $(PROYECTO) $(OBJS)
[3ec149c]25
26sources/%.o: sources/%.c
27        gcc $(OPCS) -I ../../Includes -c -o"$@" "$<"
28
29
30
31
Note: See TracBrowser for help on using the repository browser.