Parcourir la source

Fixed Makefile

master
Bert il y a 14 ans
Parent
révision
1f6af53f37
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer