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 +{ +}