Skip to content

Instantly share code, notes, and snippets.

@staroselskii
Created April 19, 2014 21:39
Show Gist options
  • Save staroselskii/11098269 to your computer and use it in GitHub Desktop.
Save staroselskii/11098269 to your computer and use it in GitHub Desktop.
BIN=lab4
CC=gcc
OBJ=lab4.o
all: $(BIN)
$(BIN): $(OBJ)
%.o: %.c
$(CC) -c $(CFLAGS) $< -o $@
.PHONY: clean
clean:
rm $(BIN)
rm $(OBJ)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment