~snappy-dev/snapcraft/core

1
2
3
4
5
6
7
8
9
10
11
# -*- Mode:Makefile; indent-tabs-mode:t; tab-width:4 -*-

all:
	gcc -o test ./test.c $(CFLAGS) $(LDFLAGS) -lpipeline

install:
	install -d -m755  $(DESTDIR)/bin/
	install -m755 ./test $(DESTDIR)/bin/test

clean:
	rm -f test