blob: bdf7853ca024c69665fa053672dbfe63f2764ba7 (
plain) (
blame)
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
|
MODULES=gtk+-2.0 libglade-2.0
INCLUDES=$(shell pkg-config --cflags $(MODULES)) -I..
WARN= -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing
CFLAGS=$(INCLUDES) -O0 -g $(WARN)
LIBS=$(shell pkg-config --libs $(MODULES)) -lm
SRC = \
aoview_main.c \
aoview_dev.c \
aoview_dev_dialog.c \
aoview_serial.c \
aoview_monitor.c \
aoview_state.c \
aoview_convert.c
INC = \
aoview.h
OBJ = \
$(SRC:.c=.o)
PROG = aoview
$(PROG): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LIBS)
$(OBJ): $(INC)
clean:
rm -f $(OBJ) $(PROG)
|