File: makefile.dos

package info (click to toggle)
wing 0.7-27.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 2,528 kB
  • ctags: 363
  • sloc: cpp: 2,468; sh: 64; makefile: 56
file content (22 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# WING (Wing Is Not Galage) Makefile
# Authors : Adam Hiatt and Anil Shrestra

TARGET := wing.exe

CC := gcc
CFLAGS := -g -O3 -m486 
CXXFLAGS := $(CFLAGS)

OBJ := main.o
LIBS := -lalleg -lstdcxx


wing.exe : $(OBJ)
	$(CC) $(CFLAGS) $(OBJ) -o $(TARGET) $(LIBS)

main.o : main.cpp
	$(CC) $(CFLAGS) -c main.cpp 

clean:
	del *.o
	del $(TARGET)