mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 16:10:48 +00:00
Altered libraries for linking to work on my linux system. I hope this
is correct. Added testpb.m - a trivial test case for the pasteboard server. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2418 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d86d3beaaa
commit
89016df352
1 changed files with 9 additions and 4 deletions
|
@ -36,7 +36,7 @@ DYNAMIC_BUNDLER_LINKER=@DYNAMIC_BUNDLER_LINKER@
|
|||
DYNAMIC_LDFLAGS=@DYNAMIC_LDFLAGS@
|
||||
DYNAMIC_CFLAGS=@DYNAMIC_CFLAGS@
|
||||
DEFS = @DEFS@
|
||||
LIBS = -L.. -lobj1 -lobj2 -lobjc -lAppKit @LIBS@ -lm -lieee
|
||||
LIBS = -L../Source -lgnustep-gui @LIBS@ -lm
|
||||
EXEEXT =
|
||||
OEXT = .o
|
||||
LIBEXT = .a
|
||||
|
@ -55,7 +55,8 @@ ALL_LDFLAGS = $(LDFLAGS) $(LIBS)
|
|||
$(CC) -c $(ALL_CPPFLAGS) $(DEFS) $(ALL_CFLAGS) $< -o $*$(OEXT)
|
||||
|
||||
SRCS = \
|
||||
nsarchiver.m
|
||||
nsarchiver.m \
|
||||
testpb.m
|
||||
|
||||
HDRS =
|
||||
|
||||
|
@ -90,9 +91,13 @@ all: $(EXCS)
|
|||
|
||||
LINK_CMD = $(CC) $(ALL_CFLAGS) $@$(OEXT) -o $@ $(ALL_LDFLAGS)
|
||||
|
||||
nsarchiver: nsarchiver$(OEXT) ../libAppKit$(LIBEXT)
|
||||
diningPhilosophers: diningPhilosophers$(OEXT) ../libgnustep-gui$(LIBEXT)
|
||||
$(LINK_CMD)
|
||||
diningPhilosophers: diningPhilosophers$(OEXT) ../libAppKit$(LIBEXT)
|
||||
|
||||
nsarchiver: nsarchiver$(OEXT) ../Source/libgnustep-gui$(LIBEXT)
|
||||
$(LINK_CMD)
|
||||
|
||||
testpb: testpb$(OEXT) ../Source/libgnustep-gui$(LIBEXT)
|
||||
$(LINK_CMD)
|
||||
|
||||
install:
|
||||
|
|
Loading…
Reference in a new issue