diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-08-25 22:39:06 +0100 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-08-25 22:39:06 +0100 |
commit | 19122bb19530975e8baf96316df74836d17caeda (patch) | |
tree | f5a4114b1972423f7be4d99aed61b93b509324a1 /Makefile | |
parent | 0bafe17082694ad30a5463f184fae681308ac5c5 (diff) | |
download | termo-19122bb19530975e8baf96316df74836d17caeda.tar.gz termo-19122bb19530975e8baf96316df74836d17caeda.tar.xz termo-19122bb19530975e8baf96316df74836d17caeda.zip |
Link against -lcurses not -lncurses, because these two might be different on some OSes (e.g. Solaris) - Petr Pavlu
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ LIBRARY=libtermkey.la $(LIBTOOL) --mode=compile --tag=CC gcc $(CFLAGS) $(CFLAGS_DEBUG) -Wall -std=c99 -o $@ -c $< $(LIBRARY): $(OBJECTS) - $(LIBTOOL) --mode=link --tag=CC gcc -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) -lncurses -o $@ $^ + $(LIBTOOL) --mode=link --tag=CC gcc -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) -lcurses -o $@ $^ demo: $(LIBRARY) demo.lo $(LIBTOOL) --mode=link --tag=CC gcc -o $@ $^ |