aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile12
-rw-r--r--config.mk3
2 files changed, 9 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ae5830b..68e5b97 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
.POSIX:
-CFLAGS = -std=c99 -Wall -Wextra -O2 $(CPPFLAGS)
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
-LDFLAGS = -s
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
OBJ =\
allocn.o\
@@ -56,15 +55,16 @@ OBJ =\
libsimple.o
all: libsimple.a
-$(OBJ): libsimple.h
+$(OBJ): $(@:.o=.c) libsimple.h
libsimple.a: $(OBJ)
$(AR) rc $@ $?
$(AR) -s $@
clean:
- -rm -r -- *.o libsimple.a libsimple.so libsimple.so.*
+ -rm -rf -- *.o *.su *.a *.so *.so.* *.gch *.gcda *.gcno *.gcov *.lo
-.SUFFIXES: .c.o
+.SUFFIXES:
+.SUFFIXES: .o .c
.PHONY: all clean
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..2751186
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,3 @@
+CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
+CFLAGS = -std=c99 -Wall -Wextra -O2 $(CPPFLAGS)
+LDFLAGS = -s