remove literal TABs

This commit is contained in:
mrdudz 2022-04-16 17:36:25 +02:00
parent 72e548fa84
commit 3dd9ed0414
1 changed files with 3 additions and 3 deletions

View File

@ -76,13 +76,13 @@ ifneq ($(MAKECMDGOALS),clean)
endif endif
%.o: %.c %.o: %.c
$(CC) -c $(CFLAGS) -o $@ $< &#9;$(CC) -c $(CFLAGS) -o $@ $<
$(PROGRAM): $(SOURCES:.c=.o) $(PROGRAM): $(SOURCES:.c=.o)
$(CC) $(LDFLAGS) -o $@ $^ &#9;$(CC) $(LDFLAGS) -o $@ $^
clean: clean:
$(RM) $(SOURCES:.c=.o) $(SOURCES:.c=.d) $(PROGRAM) $(PROGRAM).map &#9;$(RM) $(SOURCES:.c=.o) $(SOURCES:.c=.d) $(PROGRAM) $(PROGRAM).map
</verb></tscreen> </verb></tscreen>
<bf/Important:/ When using the sample Makefile above via copy & paste it is <bf/Important:/ When using the sample Makefile above via copy & paste it is