-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile,fe1
56 lines (40 loc) · 1.05 KB
/
Makefile,fe1
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
# Project: DDEUtilsJF
# MakeDir:
# rm
# Release:
# !Help <- @:Docs.!Help | VTranslate
# !Help <- @:VersionLog | Cat
# DDEUtils <- rm.DDEUtils
COMPONENT = DDEUtils
RELEASES = rm.$(COMPONENT)
# Final targets:
export:
@echo [No exported components]
release: $(RELEASES)
clean:
# Toolflags:
CCflags = -c -depend !Depend -IJFP: -throwback -apcs /NOSWST
C++flags = -c -depend !Depend -IC: -throwback
Linkflags = -nounused -rmf -c++ -o $@
ObjAsmflags = -throwback -NoCache -depend !Depend
CMHGflags =
LibFileflags = -c -o $@
Squeezeflags = -o $@
PCflags = -c -depend !Depend -throwback -IP:
JFPatchflags = -depend !Depend -throwback -out $@
MakeDllflags = -o $@
LinkDllflags = $(linkflags)
OBJS = rm.$(COMPONENT)
# Final targets:
rm.$(COMPONENT): Source
JFPatch $(JFPatchflags) Source
# User-editable dependencies:
# Static dependencies:
.SUFFIXES: .j .c .o .cmhg .h
.c.o:
cc $(ccflags) -o $@ $<
.j.o:
JFPatch -in $< $(jfpatchflags)
.INIT:
cdir rm
# Dynamic dependencies: