DCL
3.7.4
Loading...
Searching...
No Matches
work/entitycopy/Makefile.exec
Go to the documentation of this file.
1
# 2025-05-07 수
2
3
OBJS := main.o EntityCopy.o
4
5
TARGET := entitycopy
6
INSTALL := $(OUTPUT_ROOT)/bin
7
8
ifdef __DCL_DEBUG
9
TARGET := $(TARGET)D
10
endif
11
12
ifneq ($(findstring AIX, $(UNAME)),)
13
LDFLAGS := -Wl,-brtl $(LDFLAGS)
14
endif
15
16
all: $(TARGET) install
17
18
$(TARGET): $(OBJS)
19
$(LD) $(OBJS) $(LDFLAGS) -o $(TARGET)
20
21
install:
22
$(CP) $(TARGET) $(INSTALL)/$(TARGET)
23
24
clean:
25
$(RM) -f $(OBJS) $(TARGET)
work
entitycopy
Makefile.exec
Generated by
1.14.0