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