dfe0b4985a
SDL_net needs to be _installed_ to the computer, rather than simply linked to. This source distribution should be enough for that.
14 lines
146 B
Makefile
14 lines
146 B
Makefile
OUTDIR=out
|
|
|
|
all: $(OUTDIR)
|
|
$(MAKE) -C SDL_net
|
|
$(MAKE) -C codebase
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|