File: Makefile.am

package info (click to toggle)
tenace 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 3,308 kB
  • sloc: ansic: 8,228; sh: 4,711; makefile: 85
file content (17 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (2)
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) $(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