w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

Makefile.in (416B)


      1 #
      2 # w3mimg/win/Makefile
      3 #
      4 #
      5 @SET_MAKE@
      6 SHELL=@SHELL@
      7 srcdir = @srcdir@
      8 top_srcdir = @top_srcdir@
      9 VPATH = $(srcdir):.
     10 CFLAGS=$(OPTS) -I../.. -I$(top_srcdir) -I$(srcdir) @CFLAGS@ @CPPFLAGS@ @DEFS@ $(IMGCFLAGS)
     11 RM=rm
     12 CC=@CC@
     13 CXX=@CXX@
     14 
     15 IMGCFLAGS=@IMGWINCFLAGS@
     16 OBJS=win_w3mimg.o
     17 
     18 all: win_w3mimg.o
     19 
     20 win_w3mimg.o: win_w3mimg.cpp
     21 	$(CXX) $(CFLAGS) -c $<
     22 
     23 clean:
     24 	@-$(RM) -f *.o
     25 
     26 distclean: clean
     27 	-$(RM) -f Makefile
     28 
     29 #
     30 
     31