Added an explicit C compilation rule, so that we can portably compile C files into objects that are in remote directories, and their objects will end up in the same remote directories

git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@59 64f78de7-aa59-e511-a0e8-0002a5492df0
This commit is contained in:
Daniel Loffgren 2015-09-23 16:21:10 +00:00
parent b4ee501ce0
commit 723cfa3362
1 changed files with 3 additions and 0 deletions

View File

@ -43,3 +43,6 @@ cleanlib:
clean: cleanlib
rm -f $(PROG) $(ROM) $(OBJS)
.c.o:
$(CC) $(CFLAGS) -o $@ -c $<