diff options
author | Bert <ber.t@gmx.com> | 2011-01-17 16:18:47 +0100 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-01-17 16:18:47 +0100 |
commit | 1f6af53f37b7a0f13bdfbf06045f083372a82384 (patch) | |
tree | 43c9bf2e1669dd7e5b36d73015b4c8f7c3b0c3e1 /Makefile | |
parent | 7368382e4e54e9adbd4fb008c56d870581b3f679 (diff) |
Fixed Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,14 +2,14 @@ all: sxiv CC?=gcc PREFIX?=/usr/local -CFLAGS+= -Wall -pedantic -g +CFLAGS+= -std=c99 -Wall -pedantic -g LDFLAGS+= -LIBS+= +LIBS+= -lX11 SRCFILES=$(wildcard *.c) OBJFILES=$(SRCFILES:.c=.o) -physlock: $(OBJFILES) +sxiv: $(OBJFILES) $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) %.o: %.c Makefile |