blob: 54c7e1aa8d2570023d84e61f75483e6722dde7d1 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#
# IRBOX, an Ivy driver for infra-red remote controls
#
# Copyright 1998-1999
# Centre d'Etudes de la Navigation Aerienne
#
# Makefile
#
# Authors: Stephane Chatty <chatty@cenatoulouse.dgac.fr>
#
# $Id$
#
# Please refer to file version.h for the
# copyright notice regarding this software
#
SHELL = /bin/sh
CC = gcc
SRCS = irdev.c irtable.c irbox.c
OBJS = irdev.o irtable.o lex.yy.o y.tab.o irbox.o
CDEFS =
COPTS = -g -Wall
CINCS = -I../../../libraries/ivy-c/src
CLIBS = -I../../../libraries/ivy-c/src
CFLAGS = $(CDEBUGFLAGS) $(CDEFS) $(COPTS) $(CINCS)
LDFLAGS = $(COPTS) $(CLIBS)
all: irbox
irbox: $(OBJS)
$(CC) $(LDFLAGS) -o irbox $(OBJS) -livy
irdev.o: irdev.h
irbox.o: irdev.h
y.tab.h y.tab.c: gram.y
yacc -d gram.y
lex.yy.c: gram.l
lex gram.l
lex.yy.o: lex.yy.c y.tab.h
clean:
-/bin/rm -f *.a *.o *.out *.bak *.yy.* *.tab.* *.log irbox
|