git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # File:		makefile.unx
 | |
| # Author:	Julian Smart
 | |
| # Created:	1993
 | |
| # Updated:	
 | |
| # Copyright:	(c) 1993, AIAI, University of Edinburgh
 | |
| #
 | |
| # "%W% %G%"
 | |
| #
 | |
| # Makefile for minimal example (UNIX).
 | |
| 
 | |
| WXDIR = ../..
 | |
| 
 | |
| # All common UNIX compiler flags and options are now in
 | |
| # this central makefile.
 | |
| include $(WXDIR)/src/make.env
 | |
| 
 | |
| OBJECTS = $(OBJDIR)/minimal.$(OBJSUFF)
 | |
| 
 | |
| .SUFFIXES:
 | |
| 
 | |
| all:    $(OBJDIR) minimal$(GUISUFFIX)
 | |
| 
 | |
| wx:
 | |
| 
 | |
| 
 | |
| motif:
 | |
| 	$(MAKE) -f makefile.unx GUISUFFIX=_motif GUI=-Dwx_motif GUISUFFIX=_motif OPT='$(OPT)' LDLIBS='$(MOTIFLDLIBS)' WXLIB=$(WXDIR)/lib/libwx_motif.a  OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)' XVIEW_LINK=
 | |
| 
 | |
| xview:
 | |
| 	cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx xview
 | |
| 	$(MAKE) -f makefile.unx GUI=-Dwx_xview GUISUFFIX=_ol CC=$(CC) OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)'
 | |
| 
 | |
| hp:
 | |
| 	cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx hp
 | |
| 	$(MAKE) -f makefile.unx GUI=-Dwx_motif GUISUFFIX=_hp CC=CC DEBUG='$(DEBUG)' WARN='-w' \
 | |
|          XINCLUDE='$(HPXINCLUDE)' XLIB='$(HPXLIB)' XVIEW_LINK='' LDLIBS='$(HPLDLIBS)'
 | |
| 
 | |
| $(OBJDIR):
 | |
| 	mkdir $(OBJDIR)
 | |
| 
 | |
| minimal$(GUISUFFIX):	$(OBJDIR)/minimal.$(OBJSUFF) $(WXLIB)
 | |
| 	$(CC) $(LDFLAGS) -o minimal$(GUISUFFIX) $(OBJDIR)/minimal.$(OBJSUFF) $(XVIEW_LINK) $(LDLIBS)
 | |
| 
 | |
| $(OBJDIR)/minimal.$(OBJSUFF):	minimal.$(SRCSUFF)
 | |
| 	$(CC) -c $(CPPFLAGS) -o $@ minimal.$(SRCSUFF)
 | |
| 
 | |
| clean_motif:
 | |
| 	$(MAKE) -f makefile.unx GUISUFFIX=_motif cleanany
 | |
| 
 | |
| clean_ol:
 | |
| 	$(MAKE) -f makefile.unx GUISUFFIX=_ol cleanany
 | |
| 
 | |
| clean_hp:
 | |
| 	$(MAKE) -f makefile.unx GUISUFFIX=_hp cleanany
 | |
| 
 | |
| cleanany:
 | |
| 	rm -f $(OBJECTS) minimal$(GUISUFFIX) core
 |