Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tavmem committed Apr 11, 2013
1 parent 852aabe commit 7a3cd5d
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,26 @@ libj : $(LIBJ_OBJS)
cc $(LIBJ_OBJS) $(SOLINK)

jconsole : jconsole.o jeload.o
cc jconsole.o jeload.o $(JCON_LINK) $(M32) $(LIBREADLINE) -ldl -o jconsole
cc jconsole.o jeload.o $(M32) $(LIBREADLINE) $(JCONLINK) -ldl -o jconsole

tsdll : tsdll.o
cc tsdll.o $(SOLINK)
cc tsdll.o $(SOLINK)

.PHONY : check
check :
sed -e "s_(bin i: '/'){.bin_bin,'/j'_g" <~/core/j/bin/profile.ijs >~/core/profile.ijs
./jconsole 'test/tstBLD.ijs'

.PHONY : install
install :
./bin/install

.PHONY : test
test :
j/bin/jconsole 'test/tstBLD.ijs'

.PHONY : clean
clean :
rm *.o *.jmf *.so jconsole esum.txt make.txt
rm defs/hostdefs.ijs defs/netdefs.ijs j/bin/jconsole j/bin/libj.so
rm j/system/defs/ -r

0 comments on commit 7a3cd5d

Please sign in to comment.