source: trunk/makefile@ 23

Last change on this file since 23 was 15, checked in by root, 23 years ago

Commit rework

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 339 bytes
Line 
1# makefile
2
3BASE = fm3
4
5!INCLUDE makefile_pre.mk
6
7ALL: DLL $(BASE) MAK
8
9DLL:
10 cd dll
11 $(MAKE) /nologo $(MAKEFLAGS)
12 cd ..
13
14$(BASE): $(BASE).EXE \
15 $(BASE).res
16
17$(BASE).res: $(BASE).rc \
18 $(BASE).h
19
20$(BASE).obj: $(BASE).c \
21 $(BASE).h dll\version.h
22
23MAK: *.MAK
24 !$(MAKE) /NOLOGO /f $?
25
26
27!INCLUDE makefile_post.mk
28
29# The end
Note: See TracBrowser for help on using the repository browser.