Ver código fonte

Move C++ code in an src/ subdirectory.

legacy
Sam Hocevar sam 14 anos atrás
pai
commit
246b4ff176
4 arquivos alterados com 14 adições e 3 exclusões
  1. +1
    -0
      .gitignore
  2. +4
    -3
      Makefile
  3. +9
    -0
      src/Makefile
  4. +0
    -0
      src/test-map.cpp

+ 1
- 0
.gitignore Ver arquivo

@@ -0,0 +1 @@
src/test-map

+ 4
- 3
Makefile Ver arquivo

@@ -1,6 +1,7 @@

all: test-map
all:
cd src && $(MAKE) all

test-map: test-map.cpp
g++ -Wall -O3 $^ -o $@ `pkg-config --cflags --libs sdl gl SDL_image`
clean:
cd src && $(MAKE) clean


+ 9
- 0
src/Makefile Ver arquivo

@@ -0,0 +1,9 @@

all: test-map

test-map: test-map.cpp
g++ -Wall -O3 $^ -o $@ `pkg-config --cflags --libs sdl gl SDL_image`

clean:
rm -f test-map


test-map.cpp → src/test-map.cpp Ver arquivo


Carregando…
Cancelar
Salvar