Created
February 13, 2015 18:57
-
-
Save bion/3aff32fc95095c480601 to your computer and use it in GitHub Desktop.
Zed's Makefile
This file contains hidden or 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
| CFLAGS=-g -02 -Wall -Wextra -Isrc -rdynamic -DNDEBUG $(OPTFLAGS) | |
| LIBS=-ldl $(OPTLIBS) | |
| PREFIX?=/usr/local | |
| SOURCES=$(wildcard src/**/*.c src/*.c) | |
| OBJECTS=$(patsubst %.c,%.o,$(SOURCES)) | |
| TEST_SRC=$(wildcard tests/*_tests.c) | |
| TESTS=$(patsubst %.c,%,$(TEST_SRC)) | |
| TARGET=build/libYOUR_LIBRARY.a | |
| SO_TARGET=$(patsubst %.a,%.so,$(TARGET)) | |
| # The Target Build | |
| all: $(TARGET) $(SO_TARGET) tests | |
| dev: CFLAGS=-g -Wall -Isrc -Wall -Wextra $(OPTFLAGS) | |
| dev: all | |
| $(TARGET): CFLAGS += -fPIC | |
| $(TARGET): build $(OBJECTS) | |
| ar rcs $@ $(OBJECTS) | |
| ranlib $@ | |
| $(SO_TARGET): $(TARGET) $(OBJECTS) | |
| $(CC) -shared -o $@ $(OBJECTS) | |
| build: | |
| @mkdir -p build | |
| @mkdir -p bin | |
| # The Unit Tests | |
| .PHONY: tests | |
| tests: CFLAGS += $(TARGET) | |
| tests: $(TESTS) | |
| sh ./tests/runtests.sh | |
| valgrind: | |
| VALGRIND="valgrind --log-file=/tmp/valgrind-%p.log" $(MAKE) | |
| # The Cleaner | |
| clean: | |
| rm -rf build $(OBJECTS) $(TESTS) | |
| rm -f tests/tests/log | |
| find . -name "*.gc*" -exec rm {} \; | |
| rm -rf `find . -name "*.dSYM" -print` | |
| # The Install | |
| install: all | |
| install -d $(DESTDIR)/$(PREFIX)/lib/ | |
| install $(TARGET) $(DESTDIR)/$(PREFIX)/lib/ | |
| # The Checker | |
| BADFUNCS='[^_.>a-zA-Z0-9](str(n?cpy|n?cat|xfrm|n?dup|str|pbrk|tok|_)|stpn?cpy|a?sn?printf|byte_)' | |
| check: | |
| @echo Files with potentially dangerous functions. | |
| @egrep $(BADFUNCS) $(SOURCES) || true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment