From: ewt Date: Tue, 3 Sep 1996 01:38:07 +0000 (+0000) Subject: 1) changed to version 0.5 X-Git-Tag: v0-9~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=333a340c4f13ebb2ee85898f75b23d87ce9b6595;p=thirdparty%2Fnewt.git 1) changed to version 0.5 2) added scale.o --- diff --git a/Makefile b/Makefile index bb18df5..f1967e1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,11 @@ LIBS = -L. -lnewt -lslang -lm #-lefence -CFLAGS = -g -Wall -VERSION = 0.4 +CFLAGS = $(RPM_OPT_FLAGS) -Wall +ifeq ($(RPM_OPT_FLAGS),) +CFLAGS += -g +endif + +VERSION = 0.5 SONAME = 0 PROGS = test @@ -10,7 +14,7 @@ LIBNEWT = libnewt.a LIBNEWTSH = libnewt.so.$(VERSION) LIBNEWTSONAME = libnewt.so.$(SONAME) LIBOBJS = newt.o button.o form.o checkbox.o entry.o label.o listbox.o \ - scrollbar.o textbox.o + scrollbar.o textbox.o scale.o SHCFLAGS = -fPIC