mirror of
https://github.com/reactos/reactos.git
synced 2026-07-07 03:44:25 +08:00
31 lines
448 B
Makefile
31 lines
448 B
Makefile
#
|
|
#
|
|
#
|
|
OBJECTS= args.o
|
|
|
|
all: args.exe
|
|
|
|
.phony: all
|
|
|
|
clean:
|
|
- $(RM) args.o
|
|
- $(RM) args.exe
|
|
- $(RM) args.sym
|
|
|
|
.phony: clean
|
|
|
|
floppy: $(FLOPPY_DIR)/apps/args.exe
|
|
|
|
$(FLOPPY_DIR)/apps/args.exe: args.exe
|
|
ifeq ($(DOSCLI),yes)
|
|
$(CP) args.exe $(FLOPPY_DIR)\apps\args.exe
|
|
else
|
|
$(CP) args.exe $(FLOPPY_DIR)/apps\args.exe
|
|
endif
|
|
|
|
args.exe: $(OBJECTS) $(LIBS)
|
|
$(CC) $(OBJECTS) -o args.exe
|
|
$(NM) --numeric-sort args.exe > args.sym
|
|
|
|
include ../../rules.mak
|