8 lines
79 B
Makefile
8 lines
79 B
Makefile
|
|
TARGET := parport-write
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(TARGET).c
|
|
gcc -o $@ $<
|