/camera/camlib

To get this branch, use:
bzr branch http://darksoft.org/webbzr/camera/camlib

« back to all changes in this revision

Viewing changes to pfcontrol/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2011-02-13 01:33:37 UTC
  • Revision ID: csa@dside.dyndns.org-20110213013337-ibm4w4n5a3hu4k7u
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CC = gcc
 
2
 
 
3
#CONFIG = Debug
 
4
CONFIG = Release
 
5
 
 
6
INCLUDES = -I../include -I/opt/siso/include 
 
7
 
 
8
CFLAGS = -Wall -g $(INCLUDES)
 
9
 
 
10
LDFLAGS = -L../lib -L../com_fg -L/opt/siso/lib -ldl -lcomdll_fg -lcomdll -lclserme4 -lmv2_d1280_640
 
11
all: pfserver pfcontrol pfclient
 
12
 
 
13
pfcontrol: main.c
 
14
        $(CC) -o pfcontrol main.c -lm $(LDFLAGS) $(CFLAGS)
 
15
 
 
16
pfserver: fgserver.c
 
17
        $(CC) -o pfserver fgserver.c $(CFLAGS) $(LDFLAGS)
 
18
 
 
19
pfclient: fgclient.c
 
20
        gcc -o pfclient fgclient.c $(CFLAGS)
 
21
 
 
22
clean:
 
23
        rm -fr pfserver
 
24
        rm -fr pfclient
 
25
        rm -fr pfcontrol
 
26
        rm -fr fgcontrol