1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
#=======================================================================
# Makefile for V IDE
# Copyright (C) 1998 Bruce E. Wampler
#
# This program is part of the V C++ GUI Framework example programs.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#=======================================================================
CONFIG=../Config.mk
include $(CONFIG)
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ifeq ($(TOOLKIT),Motif)
PROG=\
$(Bin)/videm
else
ifeq ($(Arch),mingw32)
PROG=\
$(Bin)/vide.exe
else
PROG=\
$(Bin)/vide
endif
endif
CFLAGS += -DVIDE -I$(HOMEV)/texted -I$(HOMEV)/vide
EXOBJS=\
$(oDir)/videapp.o \
./vedcnv.o \
$(oDir)/vseeci.o \
$(oDir)/videmake.o \
$(oDir)/vrundlg.o \
$(oDir)/videcmdw.o
ifeq ($(Arch),mingw32)
EXOBJS += $(oDir)/viderc.o
endif
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
.PHONY: default all objs clean cleanobj cleanall
default: all
all: $(PROG)
clean:
-rm -f $(CLEANEXTS) $(EXOBJS) ./*.o
cleanobj: clean
-rm -f $(EXOBJS)
cleanall: cleanobj
-rm -f $(PROG)
cleanexe: cleanbin
cleanbin:
-rm -f $(PROG)
objs: $(EXOBJS)
#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
$(PROG): $(EXOBJS)
$(CXX) -o $@ $(EXOBJS) $(LDFLAGS)
$(oDir)/viderc.o: vide.rc vide.ico vwindow.ico
windres vide.rc $(oDir)/viderc.o
# Vedcnv needs to be in . because of conflicts with standard vedcnv.o
./vedcnv.o: ../texted/vedcnv.cpp v_defs.h ../texted/vedcnv.h
$(CXX) -c $(CFLAGS) -o $@ $<
$(oDir)/vseeci.o: ../texted/vseeci.cpp v_defs.h ../texted/vseeci.h
$(CXX) -c $(CFLAGS) -o $@ $<
$(oDir)/videmake.o: videmake.cpp v_defs.h videmake.h
$(CXX) -c $(CFLAGS) -o $@ $<
$(oDir)/vrundlg.o: vrundlg.cpp v_defs.h vrundlg.h
$(CXX) -c $(CFLAGS) -o $@ $<
$(oDir)/videcmdw.o: videcmdw.cpp v_defs.h videcmdw.h
$(CXX) -c $(CFLAGS) -o $@ $<
$(oDir)/videapp.o: videapp.cpp v_defs.h vapp.h \
videapp.h videcmdw.h
$(CXX) -c $(CFLAGS) -o $@ $<
|