File: Makefile

package info (click to toggle)
gmotionlive 1.0-3.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, trixie
  • size: 156 kB
  • sloc: ansic: 1,095; sh: 80; makefile: 18
file content (11 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
CC = gcc
CFLAGS = -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED
CFLAGS += -Wall

all:	gmotionlive

gmotionlive: gmotionlive.c
	$(CC) gmotionlive.c -o gmotionlive $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs`

clean:
	rm -f *.o gmotionlive