GISRCS = gpio-int.c GIOBJS = $(GISRCS:.c=.o) all: gpio-int gpio-int: $(GIOBJS) $(CC) $(LDFLAGS) -o $@ $(GIOBJS) $(LIBS) clean: rm -f $(GIOBJS) rm -f gpio-int