diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 14 | ||||
-rw-r--r-- | config.mk | 4 | ||||
-rw-r--r-- | test.c | 2 |
4 files changed, 16 insertions, 5 deletions
@@ -1,4 +1,5 @@ *\#* *~ *.o +*.su /test @@ -3,10 +3,15 @@ CONFIGFILE = config.mk include $(CONFIGFILE) + all: test +test.o: binary-multisearch.h + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -test: test.c binary-multisearch.h - $(CC) -o $@ test.c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) +.o: + $(CC) -o $@ $< $(LDFLAGS) check: test ./test @@ -19,6 +24,9 @@ uninstall: -rm -f -- "$(DESTDIR)$(PREFIX)/include/binary-multisearch.h" clean: - -rm -f -- *.o test + -rm -f -- *.o *.su test + +.SUFFIXES: +.SUFFIXES: .o .c .PHONY: all check install uninstall clean @@ -2,4 +2,6 @@ PREFIX = /usr CC = cc -CFLAGS = -std=c99 -Wall +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE +CFLAGS = -std=c99 -Wall -g +LDFLAGS = @@ -1,4 +1,4 @@ -#define _GNU_SOURCE +/* See LICENSE file for copyright and license details. */ #include <stdio.h> #include <stdlib.h> #include <time.h> |