ソースを参照

Fixed Makefile

master
Bert 14年前
コミット
1f6af53f37
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      Makefile

+ 3
- 3
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


読み込み中…
キャンセル
保存