14d1ccd89d
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
41 lines
971 B
Plaintext
41 lines
971 B
Plaintext
#
|
|
# File: makefile.unx
|
|
# Author: Julian Smart
|
|
# Created: 1993
|
|
# Updated:
|
|
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
|
#
|
|
# "%W% %G%"
|
|
#
|
|
# Makefile for Buttonbar example (UNIX).
|
|
# Change the WXDIR directory, and CPPFLAGS and LDFLAGS, for your system.
|
|
|
|
WXDIR = ../..
|
|
|
|
# All common UNIX compiler flags and options are now in
|
|
# this central makefile.
|
|
include $(WXDIR)/src/makeg95.env
|
|
|
|
TESTOBJECTS = $(OBJDIR)/test.$(OBJSUFF) $(OBJDIR)/test_resources.$(OBJSUFF)
|
|
TESTPROGRAM = test$(GUISUFFIX)
|
|
|
|
all: $(OBJDIR) $(TESTPROGRAM)
|
|
|
|
demo: $(TESTPROGRAM)
|
|
|
|
$(OBJDIR):
|
|
mkdir $(OBJDIR)
|
|
|
|
$(OBJDIR)/test.$(OBJSUFF): test.h test.$(SRCSUFF)
|
|
$(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
|
|
|
|
$(TESTPROGRAM): $(TESTOBJECTS) $(WXLIB)
|
|
$(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(TESTOBJECTS) $(LDLIBS)
|
|
|
|
$(OBJDIR)/test_resources.o: test.rc
|
|
$(RESCOMP) -i test.rc -o $(OBJDIR)/test_resources.o $(RESFLAGS)
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) test$(GUISUFFIX).exe $(TESTOBJECTS) core *.res *.rsc
|
|
|