diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 12:49:49 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 12:49:49 +0000 |
commit | 878fd2f4aebbd116062229b781c43e1549404d23 (patch) | |
tree | 8408091dff2e21db68947399488ad6f1fc5996d4 /Makefile.in | |
parent | Adding upstream version 1.6~pre1. (diff) | |
download | clzip-878fd2f4aebbd116062229b781c43e1549404d23.tar.xz clzip-878fd2f4aebbd116062229b781c43e1549404d23.zip |
Adding upstream version 1.6~pre2.upstream/1.6_pre2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 843909e..dd25874 100644 --- a/Makefile.in +++ b/Makefile.in @@ -16,16 +16,16 @@ objs = carg_parser.o encoder.o decoder.o main.o all : $(progname) $(progname) : $(objs) - $(CC) $(LDFLAGS) -o $@ $(objs) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(objs) $(progname)_profiled : $(objs) - $(CC) $(LDFLAGS) -pg -o $@ $(objs) + $(CC) $(CFLAGS) $(LDFLAGS) -pg -o $@ $(objs) main.o : main.c - $(CC) $(CPPFLAGS) $(CFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< + $(CC) $(CFLAGS) $(CPPFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< %.o : %.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< + $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< $(objs) : Makefile carg_parser.o : carg_parser.h |