source: BAORadio/libindi/libindi/BAOControl/Makefile @ 549

Last change on this file since 549 was 504, checked in by frichard, 13 years ago

-Version 0.8 de libini
-Formule de Marc
-Nouvelles fonctionnalités (goto nom-de l'objet etc...)

  • Property svn:executable set to *
File size: 534 bytes
Line 
1# Makefile for the socket programming example
2#
3
4CC = g++
5#CFLAGS = -g
6#CXXFLAGS = -g
7
8BAOcontrol_objects =  main.o baocontrol.o ClientSocket.o Socket.o filetools.o exception.o ../drivers/telescope/astro.o
9
10
11all : BAOcontrol
12
13
14BAOcontrol: $(BAOcontrol_objects)
15        g++  -o BAOcontrol $(BAOcontrol_objects) -lpthread -lX11
16
17Socket:  Socket.cpp
18ClientSocket: ClientSocket.cpp
19Astro: ../drivers/telescope/astro.cpp
20baocontrol: baocontrol.cpp
21main: main.cpp
22
23clean:
24        rm -f *.o *.cpp~ *.c~ *.h~ BAOcontrol
25
26install:
27        cp BAOcontrol /usr/bin
Note: See TracBrowser for help on using the repository browser.