commit ff88105969daab157561e50d16fb763f08bd2e29
parent 84b09d6ced57e60fd736a7f71c675256cbd9914f
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 15 Jun 2016 17:15:57 +0200
[lib] Move .POSIX at the beginning
It only has effect if it is in the first line (comment lines are not counted)
of the Makefile.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Makefile b/lib/Makefile
@@ -1,11 +1,11 @@
 # See LICENSE file for copyright and license details.
+.POSIX:
 include ../config.mk
 
 OBJS = die.o xcalloc.o xmalloc.o xrealloc.o xstrdup.o debug.o
 
 all: libcc.a
 
-.POSIX:
 
 libcc.a: $(OBJS)
 	ar r $@ $?