git-svn-id: svn://anubis/misc/parapin-led@47 bd8a9e45-a331-0410-811e-c64571078777
This commit is contained in:
josh 2008-04-29 00:24:44 +00:00
parent 06e40d64ee
commit d88038cbf5
2 changed files with 15 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
TARGET := led
CFLAGS := -O2
LDFLAGS := -lparapin
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)

6
led.c Normal file
View File

@ -0,0 +1,6 @@
#include <parapin.h>
int main
{
}