projects
/
linux-libre-firmware.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
carl9170 firmware: fix [-Wpacked-not-aligned] warnings
[linux-libre-firmware.git]
/
as31
/
as31
/
Makefile.am
1
# Makefile for as31
2
3
INCLUDES = $(GUI_CFLAGS) $(CFLAGS)
4
5
if OPTION_GTK
6
AS31GTK_BIN = as31gtk
7
else
8
AS31GTK_BIN =
9
endif
10
11
12
bin_PROGRAMS = \
13
as31 \
14
$(AS31GTK_BIN)
15
16
as31_SOURCES = \
17
as31.h \
18
run.c \
19
lexer.c \
20
parser.y \
21
parser.h \
22
symbol.c \
23
emitter.c \
24
as31.c
25
26
as31gtk_SOURCES = \
27
as31.h \
28
run.c \
29
lexer.c \
30
parser.y \
31
parser.h \
32
symbol.c \
33
emitter.c \
34
as31_gtk.c
35
36
as31gtk_LDADD = $(GUI_LIBS)
37
38
man_MANS = as31.1
39
40
EXTRA_DIST = as31.1
41
CLEANFILES = as31gtk
42