Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Commit

Permalink
Apply xv-20080616-joe-peterson-makefile-LDFLAGS-to-linker.msg. See #4.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGriffith committed Apr 23, 2017
1 parent b22bb29 commit 94fda99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -370,19 +370,19 @@ all: xv bggen vdcomp xcmap xvpictoppm

#xv: $(OBJS) $(JPEGLIB) $(TIFFLIB)
xv: $(OBJS)
$(CC) -o xv $(CFLAGS) $(OBJS) $(LIBS)
$(CC) $(CFLAGS) $(LDFLAGS) -o xv $(OBJS) $(LIBS)

bggen: bggen.c
$(CC) $(CFLAGS) -o bggen bggen.c $(LIBS)
$(CC) $(CFLAGS) $(LDFLAGS) -o bggen bggen.c $(LIBS)

vdcomp: vdcomp.c
$(CC) $(CFLAGS) -o vdcomp vdcomp.c
$(CC) $(CFLAGS) $(LDFLAGS) -o vdcomp vdcomp.c

xcmap: xcmap.c
$(CC) $(CFLAGS) -o xcmap xcmap.c $(LIBS)
$(CC) $(CFLAGS) $(LDFLAGS) -o xcmap xcmap.c $(LIBS)

xvpictoppm: xvpictoppm.c
$(CC) $(CFLAGS) -o xvpictoppm xvpictoppm.c
$(CC) $(CFLAGS) $(LDFLAGS) -o xvpictoppm xvpictoppm.c



Expand Down

0 comments on commit 94fda99

Please sign in to comment.