Explorar el Código

Move C++ code in an src/ subdirectory.

legacy
Sam Hocevar sam hace 14 años
padre
commit
246b4ff176
Se han modificado 4 ficheros con 14 adiciones y 3 borrados
  1. +1
    -0
      .gitignore
  2. +4
    -3
      Makefile
  3. +9
    -0
      src/Makefile
  4. +0
    -0
      src/test-map.cpp

+ 1
- 0
.gitignore Ver fichero

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

+ 4
- 3
Makefile Ver fichero

@@ -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 fichero

@@ -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 fichero


Cargando…
Cancelar
Guardar