From d88038cbf5557a9e3ebd997d72f8ead432905283 Mon Sep 17 00:00:00 2001 From: josh Date: Tue, 29 Apr 2008 00:24:44 +0000 Subject: [PATCH] skeleton git-svn-id: svn://anubis/misc/parapin-led@47 bd8a9e45-a331-0410-811e-c64571078777 --- Makefile | 9 +++++++++ led.c | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 Makefile create mode 100644 led.c diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..414d7a2 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +TARGET := led +CFLAGS := -O2 +LDFLAGS := -lparapin + +all: $(TARGET) + +$(TARGET): $(TARGET).c + $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) diff --git a/led.c b/led.c new file mode 100644 index 0000000..a765fdf --- /dev/null +++ b/led.c @@ -0,0 +1,6 @@ + +#include + +int main +{ +}