Created
April 25, 2012 18:29
-
-
Save kogemrka/2491958 to your computer and use it in GitHub Desktop.
makefile для компиляции примера к sqlite
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC=gcc | |
CFLAGS=-c -Wall -Wextra -Werror -ggdb | |
LDFLAGS=-lsqlite3 -lpthread -ldl | |
all: test | |
test: test.o | |
$(CC) $^ $(LDFLAGS) -o $@ | |
test.o: test.c | |
$(CC) $(CFLAGS) $^ -o $@ | |
.PHONY: clean | |
clean: | |
rm *.o test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment