From: ol.sc Date: Mon, 29 Oct 2012 20:28:10 +0000 (+0000) Subject: Normalized coding style. X-Git-Tag: V2.14~186 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=635f22c0585a222f4a0dfe2864e4851bb5adbe3c;p=cc65 Normalized coding style. git-svn-id: svn://svn.cc65.org/cc65/trunk@5888 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/supervision/Makefile b/libsrc/supervision/Makefile index 1fa38c32a..9db0ee731 100644 --- a/libsrc/supervision/Makefile +++ b/libsrc/supervision/Makefile @@ -19,7 +19,7 @@ CFLAGS = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include #-------------------------------------------------------------------------- # Rules -%.o: %.c +%.o: %.c @$(CC) $(CFLAGS) $< @$(AS) -o $@ $(AFLAGS) $(*).s @@ -29,20 +29,19 @@ CFLAGS = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include #-------------------------------------------------------------------------- # Object files -C_OBJS = +C_OBJS= -S_OBJS = crt0.o \ - ctype.o +S_OBJS= crt0.o \ + ctype.o #-------------------------------------------------------------------------- # Targets .PHONY: all clean zap -all: $(C_OBJS) $(S_OBJS) +all: $(C_OBJS) $(S_OBJS) clean: @$(RM) $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS) zap: clean -