Mercurial > msvpvf
annotate Makefile @ 26:0d19cff70e93
cast for type, make type a static variable
| author | Paper <37962225+mrpapersonic@users.noreply.github.com> | 
|---|---|
| date | Thu, 07 Apr 2022 23:24:09 -0400 | 
| parents | d1e5b8390cd3 | 
| children | 7103ac60ebdc | 
| rev | line source | 
|---|---|
| 6 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 1 CC=clang | 
| 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 2 CC_FLAGS=-Wall -O2 | 
| 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 3 LD_FLAGS= | 
| 1 | 4 | 
| 6 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 5 src/%.o : src/%.c | 
| 1 | 6 $(CC) -c $(CC_FLAGS) $< -o $@ | 
| 7 | |
| 6 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 8 msvpvf: src/main.o | 
| 1 | 9 $(CC) -o $@ $< $(CC_FLAGS) $(LD_FLAGS) | 
| 10 | |
| 6 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 11 # GUI is windows-only, please use cross-compiler! | 
| 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 12 gui: src/gui.o | 
| 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 13 $(CC) -o $@ $< $(CC_FLAGS) $(LD_FLAGS) -mwindows | 
| 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 14 | 
| 1 | 15 clean: | 
| 6 
d1e5b8390cd3
Add Windows GUI version and a multitude of other changes
 Paper <mrpapersonic@gmail.com> parents: 
3diff
changeset | 16 rm -f src/*.o *.exe msvpvf gui | 
