Skip to content

Commit f6c8a4e

Browse files
committed
Fix makefile
And cut new release Signed-off-by: Jan Friesse <[email protected]>
1 parent 04a7569 commit f6c8a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ PREFIX ?= /usr/local
55
BINDIR ?= $(PREFIX)/bin
66
MANDIR ?= $(PREFIX)/share/man
77
INSTALL_PROGRAM ?= install
8-
VERSION = 20190318
8+
VERSION = 20190319
99

1010
ifeq ($(or $(WITH_VMGUESTLIB), $(shell pkg-config --exists vmguestlib && echo "1" || echo "0")), 1)
1111
CFLAGS += $(shell pkg-config vmguestlib --cflags) -DHAVE_VMGUESTLIB
1212
LDFLAGS += $(shell pkg-config vmguestlib --libs)
1313
endif
1414

1515
$(PROGRAM_NAME): spausedd.c
16-
$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
16+
$(CC) $(CFLAGS) $< $(LDFLAGS) -o $@
1717

1818
all: $(PROGRAM_NAME)
1919

0 commit comments

Comments
 (0)