mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
Makefile:
- except for main.root, delete all created *.root files just after they're made. This avoids duplicate symbols in the link step.
This commit is contained in:
parent
49801ffa31
commit
69723f10b6
@ -1,7 +1,7 @@
|
||||
#
|
||||
# makefile for building gsh. This is for use with dmake.
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1998/04/24 15:38:31 gdr-ftp Exp $
|
||||
# $Id: Makefile,v 1.3 1998/05/30 17:21:40 gdr-ftp Exp $
|
||||
#
|
||||
# Devin Reade, February 1998.
|
||||
#
|
||||
@ -29,6 +29,12 @@ LDLIBS += -l/trenco3/lib.206/ltermcap
|
||||
|
||||
.INCLUDE : /src/gno/prog.mk
|
||||
|
||||
# We give a custom implicit rule for *.o files so that we don't get
|
||||
# duplicate "dummy" symbols in the link step.
|
||||
%.o: %.asm
|
||||
$(AS) -o $@ $(ASFLAGS) $(__OFLAG) $<
|
||||
-$(RM) -f $(OBJ_DIR)$*.root
|
||||
|
||||
LOCAL_MACRO_SRC = # gsh.mac
|
||||
MACRO_SRC = \
|
||||
$(LOCAL_MACRO_SRC) \
|
||||
|
Loading…
Reference in New Issue
Block a user