bitwise: another three minutes of video on the bus.

This commit is contained in:
2018-03-26 11:33:32 -07:00
parent e779c77d32
commit c242894f94
4 changed files with 28 additions and 5 deletions

View File

@@ -2,11 +2,15 @@ TARGET := ion
OBJS := $(TARGET).o
CFLAGS := -g -std=c99 -Wall -Werror
all: $(TARGET)
.PHONY: all run
all: run
run:$(TARGET)
./$(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
.PHONY: clean
clean:
rm -f $(OBJS) $(TARGET)
rm -f $(OBJS) $(TARGET)