File: Makefile.am

package info (click to toggle)
tenace 0.18-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,000 kB
  • sloc: ansic: 5,978; makefile: 86
file content (17 lines) | stat: -rw-r--r-- 413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC = @CC@
CFLAGS += @PACKAGE_CFLAGS@
LDFLAGS += @PACKAGE_LIBS@

EXTRA_DIST = hand_display.c hand_display.h int_int_marshal.def

all: hand_display.o

hand_display.o: hand_display.c hand_display.h int_int_marshal.h
	$(CC) $(CPPFLAGS) $(CFLAGS) -I. -c -o $@ $<

int_int_marshal.h: int_int_marshal.def
	glib-genmarshal --header $< > $@
	glib-genmarshal --body $< >> $@

clean-local:
	rm -f *.o tags int_int_marshal.h