blob: 868fcee0a6053e16cb2a3fbdc29fcb26163b6e4a (
plain)
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
|
################################################################################
#
# Makefile : recursive call on all subdirs
# Author : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <02/07/18 10:10:28 popineau>
#
################################################################################
root_srcdir=..
INCLUDE=$(INCLUDE);$(root_srcdir)\win32
subdirs = #
!include <msvc/common.mak>
default: all
!include <msvc/subdirs.mak>
!include <msvc/clean.mak>
# End of .mak
#
# Local Variables:
# mode: Makefile
# End:
# DO NOT DELETE
|