Fixed Makefile
This commit is contained in:
parent
7368382e4e
commit
1f6af53f37
6
Makefile
6
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user