File: Makefile

package info (click to toggle)
tuxcmd 0.6.70%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 3,608 kB
  • sloc: pascal: 49,754; ansic: 2,272; makefile: 106
file content (11 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
CC = gcc
CFLAGS = -Wall -ggdb

gdk-pixbuf-pas: gdk-pixbuf-pas.c
	$(CC) -o gdk-pixbuf-pas gdk-pixbuf-pas.c -I. -I/usr/include $(CFLAGS) `pkg-config glib-2.0 --cflags --libs`

clean: 
	rm -f *.o gdk-pixbuf-pas

all: gdk-pixbuf-pas