summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-05-28 09:57:28 (GMT)
committerSebastian Dröge <sebastian@centricular.com>2015-05-28 09:57:28 (GMT)
commitcfec959d571a9139edb3f9910ab00274c1768a9c (patch)
tree8d422c266f0795c5c39749d5f02dc1d3dbb75734 /Makefile
parent6feb8daa82ab19e878607bf38ff2de71b0679b79 (diff)
downloadptp-clock-reflector-cfec959d571a9139edb3f9910ab00274c1768a9c.zip
ptp-clock-reflector-cfec959d571a9139edb3f9910ab00274c1768a9c.tar.gz
Remove C implementation in preparation to add the Rust one
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 84ef2aa..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-CFLAGS ?= -O2 -g -Wall
-LDFLAGS ?=
-
-GIO_CFLAGS = $(shell pkg-config --cflags gio-2.0)
-GIO_LDFLAGS = $(shell pkg-config --libs gio-2.0)
-
-all: reflector
-
-clean:
- rm -f reflector
-
-reflector: reflector.c
- $(CC) -o $@ $^ $(CFLAGS) $(GIO_CFLAGS) $(LDFLAGS) $(GIO_LDFLAGS)
-