bitwise: another three minutes of video on the bus.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user